01: /*
02: * Copyright (C) 1999-2004 <a href="mailto:mandarax@jbdietrich.com">Jens Dietrich</a>
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */
18: package org.mandarax.jdbc.server;
19:
20: import org.mandarax.jdbc.*;
21:
22: /**
23: * Exception indicating a parse error (incorrect SQL syntax). Note that this driver
24: * does not support many SQL concepts such as JOINS, nested SELECTS, INSERTS, DDL operations.
25: * Only simple SELECT statements are supported.
26: * @author <A HREF="mailto:mandarax@jbdietrich.com">Jens Dietrich</A>
27: * @version 3.3.2 <29 December 2004>
28: * @since 3.0
29: */
30:
31: public class ParseException extends JDBCException {
32:
33: /**
34: * Constructor.
35: */
36: public ParseException() {
37: super ();
38: // TODO Auto-generated constructor stub
39: }
40:
41: /**
42: * @param message
43: */
44: public ParseException(String message) {
45: super (message);
46: // TODO Auto-generated constructor stub
47: }
48:
49: /**
50: * @param message
51: * @param cause
52: */
53: public ParseException(String message, Throwable cause) {
54: super (message, cause);
55: // TODO Auto-generated constructor stub
56: }
57:
58: /**
59: * @param cause
60: */
61: public ParseException(Throwable cause) {
62: super (cause);
63: // TODO Auto-generated constructor stub
64: }
65:
66: }
|