Class SegmentationFailedException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
org.anchoranalysis.image.bean.nonbean.segment.SegmentationFailedException
- All Implemented Interfaces:
Serializable,HasFriendlyErrorMessage
public class SegmentationFailedException extends AnchorFriendlyCheckedException
When a segmentation cannot successfully complete.
- Author:
- Owen Feehan
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description SegmentationFailedException(String message)Create with a message only.SegmentationFailedException(String message, Throwable cause)Create with a message and a cause.SegmentationFailedException(Throwable cause)Create with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTraceMethods 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.
-