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