Class AnchorRuntimeException
Object
Throwable
Exception
RuntimeException
AnchorRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AnchorFriendlyRuntimeException
,AnchorNeverOccursException
,OperationFailedRuntimeException
A base class for all unchecked (runtime) exceptions used on the Anchor platform.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Creates without message or cause.protected
AnchorRuntimeException
(String message) Creates with only a message.protected
AnchorRuntimeException
(String message, Throwable cause) Creates with message and cause.protected
AnchorRuntimeException
(Throwable cause) Creates with only a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
AnchorRuntimeException
protected AnchorRuntimeException()Creates without message or cause. -
AnchorRuntimeException
Creates with message and cause.- Parameters:
message
- the message.cause
- the cause.
-
AnchorRuntimeException
Creates with only a message.- Parameters:
message
- the message.
-
AnchorRuntimeException
Creates with only a cause.- Parameters:
cause
- the cause.
-
-
Method Details