
org.nbone.persistence.exception.PrimaryKeyException Maven / Gradle / Ivy
package org.nbone.persistence.exception;
/**
*
* @author thinking
* @version 1.0
*/
public class PrimaryKeyException extends PersistenceBaseRuntimeException{
private static final long serialVersionUID = 3017927819429970076L;
public PrimaryKeyException() {
super();
}
public PrimaryKeyException(String message, Throwable cause) {
super(message, cause);
}
public PrimaryKeyException(String message) {
super(message);
}
public PrimaryKeyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy