|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.io.IOException
org.exist.storage.io.ExistIOException
public class ExistIOException
A subclass of ExistIOException that adds the constructors for specifying a cause to the ExistIOException class (missing in ExistIOException until Java 6).
Constructor Summary | |
---|---|
ExistIOException()
Constructs an ExistIOException with null
as its error detail message. |
|
ExistIOException(String message)
Constructs an ExistIOException with a given message
String . |
|
ExistIOException(String message,
Throwable cause)
Constructs an ExistIOException with a given message
String and a Throwable that was its
underlying cause. |
|
ExistIOException(Throwable cause)
Constructs an ExistIOException with null
as its error detail message and a Throwable that was its
underlying cause. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ExistIOException()
ExistIOException
with null
as its error detail message. No underlying cause is set;
getCause
will return null
.
public ExistIOException(String message)
ExistIOException
with a given message
String
. No underlying cause is set;
getCause
will return null
.
message
- the error message.Throwable.getMessage()
public ExistIOException(Throwable cause)
ExistIOException
with null
as its error detail message and a Throwable
that was its
underlying cause.
cause
- the Throwable
(Error
or
Exception
) that caused this exception to occur.Throwable.getCause()
public ExistIOException(String message, Throwable cause)
ExistIOException
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()
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |