001package io.ebean; 002 003import javax.persistence.PersistenceException; 004 005/** 006 * Captures and wraps IOException's occurring during ElasticSearch processing etc. 007 */ 008public class PersistenceIOException extends PersistenceException { 009 010 private static final long serialVersionUID = -7630050437148176148L; 011 012 public PersistenceIOException(String msg, Exception cause) { 013 super(msg, cause); 014 } 015 016 public PersistenceIOException(Exception cause) { 017 super(cause); 018 } 019 020}