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