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

io.ebean.DuplicateKeyException Maven / Gradle / Ivy

package io.ebean;

/**
 * Thrown when a duplicate is attempted on a unique constraint.
 */
public class DuplicateKeyException extends DataIntegrityException {
  private static final long serialVersionUID = -4771932723285724817L;

  /**
   * Create with a message and cause.
   */
  public DuplicateKeyException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy