Class DigesterLoadingException

  • All Implemented Interfaces:
    java.io.Serializable

    public final class DigesterLoadingException
    extends java.lang.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:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID
      The typical serial version UID.
    • Constructor Summary

      Constructors 
      Constructor Description
      DigesterLoadingException​(java.lang.String message)
      Constructs a new Digester exception with the specified detail message.
      DigesterLoadingException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      DigesterLoadingException​(java.lang.Throwable 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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        The typical serial version UID.
        See Also:
        Constant Field Values
    • Constructor Detail

      • DigesterLoadingException

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

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

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