![JAR search and dependency download from the Maven repository](/logo.png)
org.demoiselle.jee.persistence.crud.exception.DemoisellePersistenceCrudException Maven / Gradle / Ivy
/*
* Demoiselle Framework
*
* License: GNU Lesser General Public License (LGPL), version 3 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.demoiselle.jee.persistence.crud.exception;
import org.demoiselle.jee.core.exception.DemoiselleException;
/**
*
* Exception for all persistence errors in Framework.
*
*/
public class DemoisellePersistenceCrudException extends DemoiselleException {
private static final long serialVersionUID = 1L;
public DemoisellePersistenceCrudException() {
}
public DemoisellePersistenceCrudException(String message) {
super(message);
}
public DemoisellePersistenceCrudException(Throwable cause) {
super(cause);
}
public DemoisellePersistenceCrudException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy