List of usage examples for org.hibernate SessionException SessionException
public SessionException(String message)
From source file:com.eucalyptus.entities.EntityWrapper.java
License:Open Source License
public void commit() throws ConstraintViolationException { if (this.tx != null) { this.tx.commit(); this.tx = null; } else {//from www.j a v a2s .c o m throw new SessionException("Attempt to commit session which is already closed: " + this.txStart); } }