public class ArchiveException
extends java.io.IOException
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.Exception |
m_cause
The cause of this exception.
|
| Constructor and Description |
|---|
ArchiveException()
Constructs an
ArchiveException with null as its
error detail message. |
ArchiveException(java.lang.String message)
Constructs an
ArchiveException with the specified detail message. |
ArchiveException(java.lang.String message,
java.lang.Exception cause)
Constructs a
ArchiveException with the specified detail message
and cause. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Throwable |
getCause()
Returns the cause of this exception or
null if the cause is
nonexistent or unknown. |
public ArchiveException()
ArchiveException with null as its
error detail message.
public ArchiveException(java.lang.String message)
ArchiveException with the specified detail message.
message - the detail messagepublic ArchiveException(java.lang.String message,
java.lang.Exception cause)
ArchiveException with the specified detail message
and cause.
Note that the detail message associated with cause is not
automatically incorporated in this exception's detail message.
message - the detail messagecause - the cause (OPTIONAL)