Package com.tick42.glue.core
Class GlueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tick42.glue.core.GlueException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
StreamSubscriptionRejectedException,WindowManagerException
Base type for all exceptions thrown by Glue.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGlueException(String message) Constructs a new Glue exception with the specified detail message.GlueException(String message, Throwable cause) Constructs a new Glue exception with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GlueException
Constructs a new Glue exception with the specified detail message.- Parameters:
message- the detail message
-
GlueException
Constructs a new Glue exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-