Class AnchorCheckedException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AnchorCombinableException
,AnchorFriendlyCheckedException
,ArrangeStackException
,CheckedUnsupportedOperationException
,ConcurrentModelException
,CreateModelFailedException
,DeserializationFailedException
,ErrorNodeException
,FeatureCalculationException
,IncludeMarksFailureException
,InputReadFailedException
,InsufficientPointsException
,PointsFitterException
,SetOperationFailedException
,UnitValueException
,UnsupportedMarkTypeException
,UpdateMarkSetException
A base class for all checked exceptions used on the Anchor platform.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Creates without message or cause.protected
AnchorCheckedException
(String message) Creates with only a message.protected
AnchorCheckedException
(String message, Throwable cause) Creates with message and cause.protected
AnchorCheckedException
(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, toString
-
Constructor Details
-
AnchorCheckedException
protected AnchorCheckedException()Creates without message or cause. -
AnchorCheckedException
Creates with message and cause.- Parameters:
message
- the message.cause
- the cause.
-
AnchorCheckedException
Creates with only a message.- Parameters:
message
- the message.
-
AnchorCheckedException
Creates with only a cause.- Parameters:
cause
- the cause.
-