Package com.tangosol.net.topic
Class TopicException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.net.topic.TopicException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TopicPublisherException
public class TopicException extends RuntimeException
A exception that occurred during an operation on aNamedTopic
.- Since:
- 21.06
- Author:
- Jonathan Knight 2021.05.05
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TopicException(String sMessage)
Create aTopicException
.TopicException(String sMessage, Throwable cause)
Create aTopicException
.TopicException(Throwable cause)
Create aTopicException
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TopicException
public TopicException(String sMessage)
Create aTopicException
.- Parameters:
sMessage
- the error message
-
TopicException
public TopicException(Throwable cause)
Create aTopicException
.- Parameters:
cause
- the root cause exception
-
TopicException
public TopicException(String sMessage, Throwable cause)
Create aTopicException
.- Parameters:
sMessage
- the error messagecause
- the root cause exception
-
-