Class NoSuchEventException

The exception used to report a time series topic does not have an original event with the sequence number provided by an EditAsync<TValue>(String, Int64, TValue) operation.

Inheritance
System.Object
System.Exception
SessionException
NoSuchEventException
Implements
System.Runtime.Serialization.ISerializable
Inherited Members
System.Exception.GetBaseException()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.ToString()
System.Exception.Data
System.Exception.HelpLink
System.Exception.HResult
System.Exception.InnerException
System.Exception.Message
System.Exception.Source
System.Exception.StackTrace
System.Exception.TargetSite
System.Exception.SerializeObjectState
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: PushTechnology.ClientInterface.Client.Features.TimeSeries
Assembly: Diffusion.Client.dll
Syntax
public sealed class NoSuchEventException : SessionException, ISerializable
Remarks

Added in version 6.1.

Constructors

NoSuchEventException(String)

Creates a new NoSuchEventException with a given message.

Declaration
public NoSuchEventException(string message)
Parameters
Type Name Description
System.String message

The message describing the error.

NoSuchEventException(String, Exception)

Creates a new NoSuchEventException with a given message and an innerException.

Declaration
public NoSuchEventException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The message describing the error.

System.Exception innerException

The inner exception.

Implements

System.Runtime.Serialization.ISerializable
Back to top