Public Member Functions | |
EncoderException () | |
EncoderException (final String message) | |
EncoderException (final String message, final Throwable cause) | |
EncoderException (final Throwable cause) | |
Static Private Attributes | |
static final long | serialVersionUID = 1L |
Thrown when there is a failure condition during the encoding process. This exception is thrown when an Encoder encounters a encoding specific exception such as invalid data, inability to calculate a checksum, characters outside of the expected range.
Definition at line 27 of file EncoderException.java.
org.apache.commons.codec.EncoderException.EncoderException | ( | ) |
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 42 of file EncoderException.java.
org.apache.commons.codec.EncoderException.EncoderException | ( | 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 | a useful message relating to the encoder specific error. |
Definition at line 53 of file EncoderException.java.
org.apache.commons.codec.EncoderException.EncoderException | ( | 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 72 of file EncoderException.java.
org.apache.commons.codec.EncoderException.EncoderException | ( | 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 86 of file EncoderException.java.
|
staticprivate |
Declares the Serial Version Uid.
Definition at line 34 of file EncoderException.java.