Class SegmentationFailedException
Object
Throwable
Exception
AnchorCheckedException
AnchorFriendlyCheckedException
SegmentationFailedException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
When a segmentation cannot successfully complete.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSegmentationFailedException
(String message) Create with a message only.SegmentationFailedException
(String message, Throwable cause) Create with a message and a cause.Create with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SegmentationFailedException
Create with a message only.- Parameters:
message
- the message.
-
SegmentationFailedException
Create with a cause only.- Parameters:
cause
- the cause.
-
SegmentationFailedException
Create with a message and a cause.- Parameters:
message
- the message.cause
- the cause.
-