mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
400 B
Java
19 lines
400 B
Java
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);
|
|
}
|
|
|
|
}
|