Class IncompatibleExistingTopicException

Exception thrown to report that a topic exists at the same path that is managed by a component that has exclusive control over the topic.

Inheritance
System.Object
SessionException
IncompatibleTopicException
IncompatibleExistingTopicException
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public class IncompatibleExistingTopicException : IncompatibleTopicException
Remarks

For example, a topic may already exist at the same path that is under the control of fan-out distribution.

Constructors

IncompatibleExistingTopicException(String)

Initializes a new IncompatibleExistingTopicException instance.

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

The error message.

IncompatibleExistingTopicException(String, Exception)

Initializes a new IncompatibleExistingTopicException instance.

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

The error message.

Exception innerException

The exception that caused this error.

Back to top