mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Moving the master branch to use jakarta based code and dependencies. Change to use ./jakarta-to-javax.sh to convert back to javax when releasing that.
18 lines
418 B
Java
18 lines
418 B
Java
package io.ebean;
|
|
|
|
import jakarta.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);
|
|
}
|
|
}
|