Class DigesterLoadingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.digester.xmlrules.DigesterLoadingException
-
- All Implemented Interfaces:
Serializable
public class DigesterLoadingException extends Exception
Thrown when an error occurs while parsing XML into Digester rules.- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DigesterLoadingException(String msg)DigesterLoadingException(String msg, Throwable cause)DigesterLoadingException(Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Return the cause of this exception (if any) as specified in the exception constructor.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DigesterLoadingException
public DigesterLoadingException(String msg)
- Parameters:
msg- a String detailing the reason for the exception
-
DigesterLoadingException
public DigesterLoadingException(Throwable cause)
- Parameters:
cause- underlying exception that caused this to be thrown
-
-