Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

DOMTestLoadException Class Reference

List of all members.

Public Methods

 DOMTestLoadException (Throwable innerException)
String toString ()

Detailed Description

Encapsulates a concrete load exception such as a SAX exception
Author:
Curt Arnold
Date:
2 Feb 2002

Definition at line 24 of file DOMTestLoadException.java.


Constructor & Destructor Documentation

DOMTestLoadException::DOMTestLoadException Throwable    innerException [inline]
 

Constructor

Parameters:
innerException  should not be null

Definition at line 31 of file DOMTestLoadException.java.

00031                                                         {
00032     this.innerException = innerException;
00033   }


Member Function Documentation

String DOMTestLoadException::toString   [inline]
 

Definition at line 35 of file DOMTestLoadException.java.

00035                            {
00036     if(innerException != null) {
00037       return innerException.toString();
00038     }
00039     return super.toString();
00040   }


The documentation for this class was generated from the following file:
Generated on Thu Feb 14 19:46:49 2002 for DOM Level 1 Core Test Suite by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001