Class UnhandledMessageException

The exception indicating that a message was not delivered to an application handler.

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

For messages addressed to a session or sessions using the IMessaging feature, this exception indicates a message was delivered to a session, but the session has no local handler for the message path.

For messages addressed to the server using the IMessaging feature, this exception indicates the server has no handler registered for the message path.

Since 6.0

Constructors

UnhandledMessageException(String)

Creates a new UnhandledMessageException

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

The error message.

UnhandledMessageException(String, Exception)

Creates a new UnhandledMessageException.

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

The error message.

Exception innerException

The exception that caused the UnhandledMessageException.

Back to top