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

com.avaje.ebean.PersistenceIOException Maven / Gradle / Ivy

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

import javax.persistence.PersistenceException;

/**
 * Captures and wraps IOException's occurring during ElasticSearch processing etc.
 */
public class PersistenceIOException extends PersistenceException {

  public PersistenceIOException(String msg, Exception cause) {
    super(msg, cause);
  }

  public PersistenceIOException(Exception cause) {
    super(cause);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy