KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > PersistentObjectException


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 King
9  */

10 public class PersistentObjectException extends HibernateException {
11     
12     public PersistentObjectException(String JavaDoc s) {
13         super(s);
14     }
15 }
16
17
18
19
20
21
22
Popular Tags