Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

DOMTestIncompatibleException Class Reference

List of all members.

Public Methods

 DOMTestIncompatibleException (Throwable ex, DocumentBuilderSetting setting)
String toString ()

Detailed Description

This exception represents a mismatch between the requirements of the test (for example, entity preserving) and the capabilities of the parser under test.
Author:
Curt Arnold

Definition at line 35 of file DOMTestIncompatibleException.java.


Constructor & Destructor Documentation

DOMTestIncompatibleException::DOMTestIncompatibleException Throwable    ex,
DocumentBuilderSetting    setting
[inline]
 

Constructor from a ParserConfigurationException or reflection exception

Definition at line 44 of file DOMTestIncompatibleException.java.

00044                                                                                    {
00045     exception = ex;
00046     this.setting = setting;
00047   }


Member Function Documentation

String DOMTestIncompatibleException::toString   [inline]
 

Definition at line 49 of file DOMTestIncompatibleException.java.

References DocumentBuilderSetting::toString().

00049                            {
00050     if(exception != null) {
00051       return exception.toString();
00052     }
00053     if(setting != null) {
00054       return setting.toString();
00055     }
00056     return super.toString();
00057   }


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