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

org.hibernate.TransientObjectException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$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 - 2024 Weber Informatics LLC | Privacy Policy