Class DigesterLoadingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.digester.annotations.DigesterLoadingException
-
- All Implemented Interfaces:
java.io.Serializable
public final class DigesterLoadingException extends java.lang.RuntimeException
The exception thrown when an error occurs while analyzing targets and building rule sets.- Since:
- 2.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
The default serial version UID.
-
Constructor Summary
Constructors Constructor Description DigesterLoadingException(java.lang.String message)
Constructs a new loading exception with the specified detail message.DigesterLoadingException(java.lang.String message, java.lang.Throwable cause)
Constructs a new loading exception with the specified detail message and cause.DigesterLoadingException(java.lang.Throwable cause)
Constructs a new loading exception with the specified cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The default serial version UID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DigesterLoadingException
public DigesterLoadingException(java.lang.String message)
Constructs a new loading exception with the specified detail message.- Parameters:
message
- the detail message.
-
DigesterLoadingException
public DigesterLoadingException(java.lang.Throwable cause)
Constructs a new loading exception with the specified cause.- Parameters:
cause
- the specified cause.
-
DigesterLoadingException
public DigesterLoadingException(java.lang.String message, java.lang.Throwable cause)
Constructs a new loading exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the specified cause.
-
-