public class ImageStorageException
extends java.io.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.
Modifier and Type | Field and Description |
---|---|
private static long |
serialVersionUID |
Constructor and Description |
---|
ImageStorageException(java.lang.String message)
Constructs an
ImageStorageException with a given message
String . |
ImageStorageException(java.lang.String message,
java.lang.Throwable cause)
Constructs an
ImageStorageException with a given message
String and a Throwable that was its
underlying cause. |
private static final long serialVersionUID
public ImageStorageException(java.lang.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(java.lang.String message, java.lang.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()