Public Member Functions | |
| DecoderException () | |
| DecoderException (final String message) | |
| DecoderException (final String message, final Throwable cause) | |
| DecoderException (final Throwable cause) | |
Static Private Attributes | |
| static final long | serialVersionUID = 1L |
Thrown when there is a failure condition during the decoding process. This exception is thrown when a Decoder encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
Definition at line 26 of file DecoderException.java.
| org.apache.commons.codec.DecoderException.DecoderException | ( | ) |
Constructs a new exception with
as its detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.
Definition at line 41 of file DecoderException.java.
| org.apache.commons.codec.DecoderException.DecoderException | ( | final String | message | ) |
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.
| message | The detail message which is saved for later retrieval by the getMessage() method. |
Definition at line 52 of file DecoderException.java.
| org.apache.commons.codec.DecoderException.DecoderException | ( | final String | message, |
| final Throwable | cause | ||
| ) |
Constructs a new exception with the specified detail message and cause.
Note that the detail message associated with cause is not automatically incorporated into this exception's detail message.
| message | The detail message which is saved for later retrieval by the getMessage() method. |
| cause | The cause which is saved for later retrieval by the getCause() method. A null
|
Definition at line 69 of file DecoderException.java.
| org.apache.commons.codec.DecoderException.DecoderException | ( | final Throwable | cause | ) |
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables.
| cause | The cause which is saved for later retrieval by the getCause() method. A null
|
Definition at line 83 of file DecoderException.java.
|
staticprivate |
Declares the Serial Version Uid.
Definition at line 33 of file DecoderException.java.
1.8.8