Class HandlerConflictException

The exception indicating that a handler could not be registered because it conflicts with an existing handler.

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

Since 6.0

Constructors

HandlerConflictException(String)

Creates a new HandlerConflictException

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

The error message.

HandlerConflictException(String, Exception)

Creates a new HandlerConflictException.

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

The error message.

Exception innerException

The exception that caused the HandlerConflictException.

Back to top