org.elkoserver.foundation.json
Class JSONInvocationException

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

public class JSONInvocationException
extends Exception

An exception somewhere in the process of performing the reflection operations involved in invoking a method or constructor from a JSON object. This may occur, for example, as the result of receiving a malformed JSON message.

See Also:
Serialized Form

Constructor Summary
JSONInvocationException()
          Construct a JSONInvocationException with no specified detail message.
JSONInvocationException(String message)
          Construct a JSONInvocationException with the specified detail message.
 
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

JSONInvocationException

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


JSONInvocationException

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

Parameters:
message - The detail message.