Class ContextException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tccc.kos.commons.core.context.ContextException
- All Implemented Interfaces:
Serializable
Base class for all context exceptions.
- Since:
- 1.0
- Version:
- 2022-10-28
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionContextException
(String message) Constructs a new "context" exception with the specified message.ContextException
(String message, Throwable cause) Constructs a new "context" exception with the specified 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
-
ContextException
Constructs a new "context" exception with the specified message.- Parameters:
message
- the detailed error message
-
ContextException
Constructs a new "context" exception with the specified message and cause.- Parameters:
message
- the detailed error messagecause
- the exception that caused this exception
-