uk.org.ury.server.exceptions
Class HandlerSetupFailureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by uk.org.ury.server.exceptions.HandlingException
              extended by uk.org.ury.server.exceptions.HandlerSetupFailureException
All Implemented Interfaces:
java.io.Serializable

public class HandlerSetupFailureException
extends HandlingException

Exception thrown when the server request handler requested by the client cannot be set up to process the request.

Author:
Matt Windsor
See Also:
Serialized Form

Constructor Summary
HandlerSetupFailureException()
          Construct a new HandlerNotFoundException with a default reason.
HandlerSetupFailureException(java.lang.String className, java.lang.Throwable cause)
          Construct a new HandlerSetupFailureException with a class name and chained exception.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HandlerSetupFailureException

public HandlerSetupFailureException()
Construct a new HandlerNotFoundException with a default reason.


HandlerSetupFailureException

public HandlerSetupFailureException(java.lang.String className,
                                    java.lang.Throwable cause)
Construct a new HandlerSetupFailureException with a class name and chained exception. Use this to hide exception specifics from higher abstraction layers.

Parameters:
className - The name of the failed handler class.
cause - The exception that this new exception is to wrap.