public class ImageStorageException extends IOException
In addition to a message string, a reference to another
Throwable (Error or
Exception) is maintained. This reference, if
non-null, refers to the event that caused this
exception to occur. For example, an IOException while
reading from a File would be stored there.
| Constructor and Description |
|---|
ImageStorageException(String message)
Constructs an
ImageStorageException with a given message
String. |
ImageStorageException(String message,
Throwable cause)
Constructs an
ImageStorageException with a given message
String and a Throwable that was its
underlying cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ImageStorageException(String message)
ImageStorageException with a given message
String. No underlying cause is set;
getCause will return null.message - the error message.Throwable.getMessage()public ImageStorageException(String message, Throwable cause)
ImageStorageException with a given message
String and a Throwable that was its
underlying cause.message - the error message.cause - the Throwable (Error or
Exception) that caused this exception to occur.Throwable.getCause(),
Throwable.getMessage()Copyright © 2025. All rights reserved.