01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * An exception indicating that a query could not be processed by the query
12: * parser, typically due to syntax errors.
13: *
14: * @author jeen
15: * @author Herko ter Horst
16: */
17: public class MalformedQueryException extends OpenRDFException {
18:
19: private static final long serialVersionUID = 1210214405486786142L;
20:
21: public MalformedQueryException() {
22: super ();
23: }
24:
25: public MalformedQueryException(String message) {
26: super (message);
27: }
28:
29: public MalformedQueryException(Throwable t) {
30: super (t);
31: }
32:
33: public MalformedQueryException(String message, Throwable t) {
34: super(message, t);
35: }
36: }
|