org.apache.commons.digester.xmlrules
Class XmlLoadException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.apache.commons.digester.xmlrules.XmlLoadException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CircularIncludeException

public class XmlLoadException
extends java.lang.RuntimeException

Thrown when an error occurs while parsing XML into Digester rules.

Since:
1.2
See Also:
Serialized Form

Field Summary
private  java.lang.Throwable cause
           
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
XmlLoadException(java.lang.String msg)
           
XmlLoadException(java.lang.String msg, java.lang.Throwable cause)
           
XmlLoadException(java.lang.Throwable cause)
           
 
Method Summary
 java.lang.Throwable getCause()
          Returns the cause of this throwable or null if the cause is nonexistent or unknown.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

cause

private java.lang.Throwable cause
Constructor Detail

XmlLoadException

public XmlLoadException(java.lang.Throwable cause)
Parameters:
cause - underlying exception that caused this to be thrown

XmlLoadException

public XmlLoadException(java.lang.String msg)

XmlLoadException

public XmlLoadException(java.lang.String msg,
                        java.lang.Throwable cause)
Method Detail

getCause

public java.lang.Throwable getCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown.

Overrides:
getCause in class java.lang.Throwable


Copyright (c) 2001-2004 - Apache Software Foundation