Class NoSuchSessionException

The exception used to report there is no session for a given session ID.

Inheritance
System.Object
SessionException
NoSuchSessionException
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public class NoSuchSessionException : SessionException
Remarks

Since 6.0

Constructors

NoSuchSessionException(String)

Creates a new NoSuchSessionException

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

The error message.

NoSuchSessionException(String, Exception)

Creates a new NoSuchSessionException.

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

The error message.

Exception innerException

The exception that caused the NoSuchSessionException.

Back to top