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

com.avaje.ebean.text.json.JsonIOException Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.text.json;

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

* Typically wraps the checked IOException. *

*/ public class JsonIOException extends RuntimeException { /** * 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