org.apache.commons.digester3.binder
Class DigesterLoadingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by 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:
Serialized Form

Constructor Summary
DigesterLoadingException(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.
DigesterLoadingException(Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.


Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.