Package io.ebean.text.json
Class JsonIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.ebean.text.json.JsonIOException
-
- All Implemented Interfaces:
Serializable
public class JsonIOException extends RuntimeException
Unchecked exception thrown when an IOException occurs in json processing.Typically wraps the checked IOException.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonIOException(String message)
Construct with a message.JsonIOException(Throwable cause)
Construct with an underlying 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
-
JsonIOException
public JsonIOException(Throwable cause)
Construct with an underlying cause.
-
JsonIOException
public JsonIOException(String message)
Construct with a message.
-
-