org.elkoserver.foundation.json
Class JSONSetupError

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

public class JSONSetupError
extends Error

An error somewhere in the process of performing the reflection operations to prepare to invoke methods or constructors from a JSON object. This error will happen only if the JSONMethod annotations on a JSON driven method or constructor are incorrectly specified; this should never happen during normal operation as a result of message receipt.

See Also:
Serialized Form

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

JSONSetupError

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


JSONSetupError

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

Parameters:
message - The detail message.