KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > hql > ast > InvalidPathException


1 // $Id: InvalidPathException.java,v 1.2 2004/12/07 07:53:10 pgmjsd Exp $
2
package org.hibernate.hql.ast;
3
4 import antlr.SemanticException;
5
6 /**
7  * Exception thrown when an invalid path is found in a query.
8  *
9  * @author josh Dec 5, 2004 7:05:34 PM
10  */

11 public class InvalidPathException extends SemanticException {
12     public InvalidPathException(String JavaDoc s) {
13         super( s );
14     }
15 }
16
Popular Tags