Open Source Repository

Home /hibernate/hibernate-3.2.4.ga | Repository Home



org/hibernate/PersistentObjectException.java
//$Id: PersistentObjectException.java 6877 2005-05-23 15:00:25Z oneovthafew $
package org.hibernate;

/**
 * Thrown when the user passes a persistent instance to a <tt>Session</tt>
 * method that expects a transient instance.
 *
 @author Gavin King
 */
public class PersistentObjectException extends HibernateException {
  
  public PersistentObjectException(String s) {
    super(s);
  }
}