KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > SessionException


1 //$Id: SessionException.java,v 1.1 2005/05/23 15:00:24 oneovthafew Exp $
2
package org.hibernate;
3
4 /**
5  * Thrown when the user calls a method of a <tt>Session</tt>
6  * that is in an inappropropriate state (for example, the
7  * the session is closed or disconnected).
8  *
9  * @author Gavin King
10  */

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