mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
18 lines
416 B
Java
18 lines
416 B
Java
package io.ebean;
|
|
|
|
import javax.persistence.PersistenceException;
|
|
|
|
/**
|
|
* Thrown when a foreign key constraint is enforced.
|
|
*/
|
|
public class DataIntegrityException extends PersistenceException {
|
|
private static final long serialVersionUID = -6740171949170180970L;
|
|
|
|
/**
|
|
* Create with a message and cause.
|
|
*/
|
|
public DataIntegrityException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|