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
ConstructorsConstructorDescriptionConstructs anImageSaveExceptionwith "image couldn't be saved" as its detail message.Constructs anImageSaveExceptionwith 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 anImageSaveExceptionwith "image couldn't be saved" as its detail message. -
ImageSaveException
Constructs anImageSaveExceptionwith the specified detail message. The error messageStringscan later be retrieved by theThrowable.getMessage()method of classThrowable.- Parameters:
s- the detail message.
-