org.elkoserver.foundation.json
Class MessageHandlerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.elkoserver.foundation.json.MessageHandlerException
All Implemented Interfaces:
Serializable

public class MessageHandlerException
extends Exception

An exception in the execution of a JSON method.

See Also:
Serialized Form

Constructor Summary
MessageHandlerException()
          Construct a MessageHandlerException with no specified detail message.
MessageHandlerException(String message)
          Construct a MessageHandlerException with the specified detail message.
MessageHandlerException(String message, Throwable nested)
          Construct a MessageHandlerException wrapping some other kind of 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MessageHandlerException

public MessageHandlerException()
Construct a MessageHandlerException with no specified detail message.


MessageHandlerException

public MessageHandlerException(String message)
Construct a MessageHandlerException with the specified detail message.

Parameters:
message - The detail message.

MessageHandlerException

public MessageHandlerException(String message,
                               Throwable nested)
Construct a MessageHandlerException wrapping some other kind of exception.

Parameters:
message - The detail message.
nested - Other exception to wrap.