Yet Another WebIOPi+
 All Classes Namespaces Files Functions Variables Macros Pages
Public Member Functions | Static Private Attributes | List of all members
org.apache.commons.codec.EncoderException Class Reference
Inheritance diagram for org.apache.commons.codec.EncoderException:

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
 

Detailed Description

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.

Version
$Id$

Definition at line 27 of file EncoderException.java.

Constructor & Destructor Documentation

org.apache.commons.codec.EncoderException.EncoderException ( )

Constructs a new exception with

null

as its detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.

Since
1.4

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.

Parameters
messagea 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.

Parameters
messageThe detail message which is saved for later retrieval by the getMessage() method.
causeThe cause which is saved for later retrieval by the getCause() method. A
null
value is permitted, and indicates that the cause is nonexistent or unknown.
Since
1.4

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.

Parameters
causeThe cause which is saved for later retrieval by the getCause() method. A
null
value is permitted, and indicates that the cause is nonexistent or unknown.
Since
1.4

Definition at line 86 of file EncoderException.java.

Member Data Documentation

final long org.apache.commons.codec.EncoderException.serialVersionUID = 1L
staticprivate

Declares the Serial Version Uid.

See also
Always Declare Serial Version Uid

Definition at line 34 of file EncoderException.java.


The documentation for this class was generated from the following file: