Class DigesterLoadingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.digester3.binder.DigesterLoadingException
- All Implemented Interfaces:
Serializable
Thrown when errors occur while creating a
Digester.
Includes a list of encountered errors. Clients should catch this exception, log it, and stop execution.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDigesterLoadingException(String message) Constructs a new Digester exception with the specified detail message.DigesterLoadingException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DigesterLoadingException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause.
-
DigesterLoadingException
Constructs a new Digester exception with the specified detail message.- Parameters:
message- the detail message.
-
DigesterLoadingException
Constructs a new exception with the specified cause.- Parameters:
cause- the cause.
-