001package com.avaje.ebean.text.json; 002 003/** 004 * Unchecked exception thrown when an IOException occurs in json processing. 005 * <p> 006 * Typically wraps the checked IOException. 007 * </p> 008 */ 009public class JsonIOException extends RuntimeException { 010 011 /** 012 * Construct with an underlying cause. 013 */ 014 public JsonIOException(Throwable cause) { 015 super(cause); 016 } 017 018 /** 019 * Construct with a message. 020 */ 021 public JsonIOException(String message) { 022 super(message); 023 } 024}