Class ANZException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.image.InvalidImageException
com.xinapse.multisliceimage.Analyze.ANZException
- All Implemented Interfaces:
Serializable
Signals that an error in the Analyze package has occurred.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anANZException
without a detail message.Constructs anANZException
with the specified detail message.ANZException
(String message, Throwable cause) Constructs anANZException
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
-
ANZException
public ANZException()Constructs anANZException
without a detail message. -
ANZException
Constructs anANZException
with the specified detail message. The error message strings
can later be retrieved by theThrowable.getMessage()
method of classThrowable
.- Parameters:
s
- the detail message.
-
ANZException
Constructs anANZException
with the specified cause.- Parameters:
message
- the detail message.cause
- the cause.
-