org.hibernate.TransientObjectException Maven / Gradle / Ivy
//$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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy