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
ConstructorsConstructorDescriptionConstructs anROIExceptionwithout a detail message.Constructs anROIExceptionwith the specified detail message.ROIException(String message, Throwable cause) Constructs anROIExceptionwith 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 anROIExceptionwithout a detail message. -
ROIException
Constructs anROIExceptionwith the specified detail message. The error message Stringscan later be retrieved by theThrowable.getMessage()method of classThrowable.- Parameters:
s- the detail message.
-
ROIException
Constructs anROIExceptionwith the specified cause.- Parameters:
message- the detail message.cause- the cause.
-