Class IncompatibleTopicStateException

The exception that indicates that an operation could not be performed because the topic is managed by a component (such as fan-out) that prohibits updates from the caller.

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

Constructors

IncompatibleTopicStateException(String)

Initializes a new IncompatibleTopicStateException instance.

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

The error message.

IncompatibleTopicStateException(String, Exception)

Initializes a new IncompatibleTopicStateException instance.

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

The error message.

Exception innerException

The inner exception.

Back to top