mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
448 B
Java
19 lines
448 B
Java
package io.ebean;
|
|
|
|
import javax.persistence.OptimisticLockException;
|
|
|
|
/**
|
|
* Thrown at SERIALIZABLE isolation level for non-recoverable concurrent conflict.
|
|
*/
|
|
public class SerializableConflictException extends OptimisticLockException {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* Create with a message and cause.
|
|
*/
|
|
public SerializableConflictException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|