org.hibernate.TransientObjectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: TransientObjectException.java 6877 2005-05-23 15:00:25Z oneovthafew $
package org.hibernate;
/**
* Thrown when the user passes a transient instance to a Session
* method that expects a persistent instance.
*
* @author Gavin King
*/
public class TransientObjectException extends HibernateException {
public TransientObjectException(String s) {
super(s);
}
}