1 //$Id: TransientObjectException.java,v 1.2 2005/05/23 15:00:24 oneovthafew Exp $2 package org.hibernate;3 4 /**5 * Thrown when the user passes a transient instance to a <tt>Session</tt>6 * method that expects a persistent instance.7 *8 * @author Gavin King9 */10 11 public class TransientObjectException extends HibernateException {12 13 public TransientObjectException(String s) {14 super(s);15 }16 17 }18 19 20 21 22 23 24