Class DigesterLoadingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.digester3.binder.DigesterLoadingException
All Implemented Interfaces:
Serializable

public final class DigesterLoadingException extends RuntimeException
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 Details

    • serialVersionUID

      private static final long serialVersionUID
      The typical serial version UID.
      See Also:
  • Constructor Details

    • DigesterLoadingException

      public DigesterLoadingException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause.
    • DigesterLoadingException

      public DigesterLoadingException(String message)
      Constructs a new Digester exception with the specified detail message.
      Parameters:
      message - the detail message.
    • DigesterLoadingException

      public DigesterLoadingException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - the cause.