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);
}
}