Class JsonException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.exoplatform.ws.frameworks.json.impl.JsonException
-
- All Implemented Interfaces:
Serializable
public class JsonException extends Exception
Should be thrown if any error occurs during JSON / Java Object transformation.- Version:
- $Id: JsonException.java 34417 2009-07-23 14:42:56Z dkatayev $
- Author:
- Andrey Parfonov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonException(String message)JsonException(String message, Throwable cause)JsonException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JsonException
public JsonException(String message, Throwable cause)
- Parameters:
message- the message.cause- the cause.
-
JsonException
public JsonException(Throwable cause)
- Parameters:
cause- the cause.
-
JsonException
public JsonException(String message)
- Parameters:
message- the message.
-
-