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

io.ebean.PersistenceIOException Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean;

import javax.persistence.PersistenceException;

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

  private static final long serialVersionUID = -7630050437148176148L;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy