Package org.anchoranalysis.image.io
Class ImageIOException
Object
Throwable
Exception
AnchorCheckedException
AnchorFriendlyCheckedException
ImageIOException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
When an error occurs reading or writing an image to/from the file-system.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionImageIOException
(String message) Create with a message only.ImageIOException
(String message, Throwable cause) Create with a message and cause.ImageIOException
(Throwable cause) Create with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ImageIOException
Create with a cause only.- Parameters:
cause
- the cause
-
ImageIOException
Create with a message only.- Parameters:
message
- the message.
-
ImageIOException
Create with a message and cause.- Parameters:
message
- the message.cause
- the cause.
-