Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

MarshalException Class Reference

Inheritance diagram for MarshalException:

Inheritance graph
[legend]
Collaboration diagram for MarshalException:

Collaboration graph
[legend]
List of all members.

Public Methods

 MarshalException ()
 MarshalException (String s)
 MarshalException (Exception exception)

Detailed Description

MarshalException is a checked exception that indicates that an error occured when marshalling data.

Definition at line 36 of file MarshalException.java.


Constructor & Destructor Documentation

MarshalException::MarshalException ( ) [inline]
 

Constructs a new MarshalException with no detail message.

Definition at line 40 of file MarshalException.java.

00040 { super(); }

MarshalException::MarshalException ( String s ) [inline]
 

Builds a MarshalException with a detail message.

Definition at line 44 of file MarshalException.java.

00044 { super(s); }

MarshalException::MarshalException ( Exception exception ) [inline]
 

Builds a MarshalException that wraps another exception.

Definition at line 48 of file MarshalException.java.

00048 { super(exception); }


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