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.DecoderException Class Reference
Inheritance diagram for org.apache.commons.codec.DecoderException:

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
 

Detailed Description

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.

Version
$Id$

Definition at line 26 of file DecoderException.java.

Constructor & Destructor Documentation

org.apache.commons.codec.DecoderException.DecoderException ( )

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

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

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

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 83 of file DecoderException.java.

Member Data Documentation

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

Declares the Serial Version Uid.

See also
Always Declare Serial Version Uid

Definition at line 33 of file DecoderException.java.


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