List of usage examples for org.hibernate HibernateException subclass-usage
From source file com.aosa.main.utils.aosaexception.AOSARuntimeException.java
public class AOSARuntimeException extends HibernateException { /** * Description<code>serialVersionUID</code> <br> */ private static final long serialVersionUID = 34649360033724469L;
From source file com.autobizlogic.abl.engine.ConstraintException.java
/**
* Constraint failures throw these, a subclass of HibernateException.
* It is a subclass of HibernateException because RuntimeExceptions are translated
* in ActionQueue (see code for ActionQueue), and we don't want that -- we want
* our exception to surface.
*/
From source file com.mx.teknei.pc.lib.db.exception.UnableToSaveException.java
/** * * @author HAENCISO */ public class UnableToSaveException extends HibernateException { public UnableToSaveException(HibernateException msg) {
From source file com.mx.teknei.pcabordo.lib.db.exception.UnableToSaveException.java
/** * * @author HAENCISO */ public class UnableToSaveException extends HibernateException { public UnableToSaveException(HibernateException msg) {
From source file de.fhg.fokus.hss.db.hibernate.DatabaseException.java
/**
* This Exception is throwed by the application only when a hibernate operation: commit-transaction or close-session fails.
*
* @author adp dot fokus dot fraunhofer dot de
* Adrian Popescu / FOKUS Fraunhofer Institute
*/
From source file de.fhg.fokus.hss.util.InfrastructureException.java
/**
* This Exception is throwed by the application only when a hibernate operation: commit-transaction or close-session fails.
*
* @author adp dot fokus dot fraunhofer dot de
* Adrian Popescu / FOKUS Fraunhofer Institute
*/
From source file lucee.runtime.orm.hibernate.HibernatePageException.java
public class HibernatePageException extends HibernateException implements IPageException, PageExceptionBox { private static final long serialVersionUID = -7745292875775743390L; private PageException pe;
From source file main.java.com.aosa.util.AOSARuntimeException.java
public class AOSARuntimeException extends HibernateException { /** * Description<code>serialVersionUID</code> <br> */ private static final long serialVersionUID = 34649360033724469L;
From source file org.freeims.hss.server.db.hibernate.DatabaseException.java
/**
* This Exception is throwed by the application only when a hibernate operation: commit-transaction or close-session fails.
*
* @author adp dot fokus dot fraunhofer dot de
* Adrian Popescu / FOKUS Fraunhofer Institute
*/
From source file org.movealong.persistence.HibernateFacadeException.java
/** * The super class of all exceptions that can be thrown from misuse of {@link HibernateFacade} */ public class HibernateFacadeException extends HibernateException { public HibernateFacadeException(String s) { super(s);