Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

UnMarshalException Class Reference

Inheritance diagram for UnMarshalException:

Inheritance graph
[legend]
Collaboration diagram for UnMarshalException:

Collaboration graph
[legend]
List of all members.

Public Methods

 UnMarshalException ()
 UnMarshalException (String s)
 UnMarshalException (Exception exception)

Detailed Description

UnMarshalException is a checked exception that indicates that an error occurred when unmarshalling data.

Definition at line 36 of file UnMarshalException.java.


Constructor & Destructor Documentation

UnMarshalException::UnMarshalException ( ) [inline]
 

Constructs a new UnMarshalException with no detail message.

Definition at line 40 of file UnMarshalException.java.

00040 { super(); }

UnMarshalException::UnMarshalException ( String s ) [inline]
 

Builds a UnMarshalException with a detail message.

Definition at line 44 of file UnMarshalException.java.

00044 { super(s); }

UnMarshalException::UnMarshalException ( Exception exception ) [inline]
 

Builds a UnMarshalException that wraps another exception.

Definition at line 48 of file UnMarshalException.java.

00048 { super(exception); }


The documentation for this class was generated from the following file:
Generated at Fri May 31 19:25:40 2002 for Jonathan by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001