Package com.xinapse.multisliceimage.roi
Class ROIException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.multisliceimage.roi.ROIException
- All Implemented Interfaces:
Serializable
Signals that an error has occurred while handling an ROI.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anROIException
without a detail message.Constructs anROIException
with the specified detail message.ROIException
(String message, Throwable cause) Constructs anROIException
with the specified 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
-
ROIException
public ROIException()Constructs anROIException
without a detail message. -
ROIException
Constructs anROIException
with the specified detail message. The error message Strings
can later be retrieved by theThrowable.getMessage()
method of classThrowable
.- Parameters:
s
- the detail message.
-
ROIException
Constructs anROIException
with the specified cause.- Parameters:
message
- the detail message.cause
- the cause.
-