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