FileDocCategorySizeDatePackage
PersistentObjectException.javaAPI DocHibernate 3.2.5394Mon May 23 10:00:26 BST 2005org.hibernate

PersistentObjectException.java

//$Id: PersistentObjectException.java 6877 2005-05-23 15:00:25Z oneovthafew $
package org.hibernate;

/**
 * Thrown when the user passes a persistent instance to a <tt>Session</tt>
 * method that expects a transient instance.
 *
 * @author Gavin King
 */
public class PersistentObjectException extends HibernateException {
	
	public PersistentObjectException(String s) {
		super(s);
	}
}