All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.SerializableConflictException Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy