Package com.xinapse.image
Class ImageSaveException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.image.ImageSaveException
- All Implemented Interfaces:
Serializable
Signals that an error has occurred when trying to save an image.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anImageSaveException
with "image couldn't be saved" as its detail message.Constructs anImageSaveException
with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ImageSaveException
public ImageSaveException()Constructs anImageSaveException
with "image couldn't be saved" as its detail message. -
ImageSaveException
Constructs anImageSaveException
with the specified detail message. The error messageString
s
can later be retrieved by theThrowable.getMessage()
method of classThrowable
.- Parameters:
s
- the detail message.
-