001package com.avaje.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  public PersistenceIOException(String msg, Exception cause) {
011    super(msg, cause);
012  }
013
014  public PersistenceIOException(Exception cause) {
015    super(cause);
016  }
017
018}