All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.PersistentObjectException Maven / Gradle / Ivy

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

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










© 2015 - 2024 Weber Informatics LLC | Privacy Policy