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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
The typical serial version UID. -
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 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDThe typical serial version UID.- See Also:
-
-
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.
-