All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.text.json.JsonIOException Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.text.json;

/**
 * Unchecked exception thrown when an IOException occurs in json processing.
 * 

* Typically wraps the checked IOException. *

*/ public class JsonIOException extends RuntimeException { private static final long serialVersionUID = 3062982368161342209L; /** * Construct with an underlying cause. */ public JsonIOException(Throwable cause) { super(cause); } /** * Construct with a message. */ public JsonIOException(String message) { super(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy