uk.org.ury.server.exceptions
Class HandlerNotFoundException

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.HandlerNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class HandlerNotFoundException
extends HandlingException

Exception thrown when the server request handler requested by the client is not * found in the class space.

Author:
Matt Windsor
See Also:
Serialized Form

Constructor Summary
HandlerNotFoundException()
          Construct a new HandlerNotFoundException with a default reason.
HandlerNotFoundException(java.lang.String className, java.lang.Throwable cause)
          Construct a new HandlerNotFoundException 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

HandlerNotFoundException

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


HandlerNotFoundException

public HandlerNotFoundException(java.lang.String className,
                                java.lang.Throwable cause)
Construct a new HandlerNotFoundException with a class name and chained exception.

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