01: /*
02: * LICENSE INFORMATION
03: * Copyright 2005-2007 by FZI (http://www.fzi.de).
04: * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05: * <OWNER> = Max Völkel
06: * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07: * <YEAR> = 2007
08: *
09: * Project information at http://semweb4j.org/rdf2go
10: */
11: package org.ontoware.rdf2go.exception;
12:
13: /**
14: * This runtime exception is thrown if a given query string could not be parsed
15: * and interpreted as a valid query string.
16: *
17: * Adapters should include help to refine the query to become valid, e.g. show
18: * which part of the query could not be parsed.
19: *
20: * @author voelkel
21: *
22: */
23: public class MalformedQueryException extends ModelRuntimeException {
24:
25: /**
26: *
27: */
28: private static final long serialVersionUID = -810711996311935876L;
29:
30: public MalformedQueryException() {
31: super ();
32: }
33:
34: public MalformedQueryException(Exception e) {
35: super (e);
36: }
37:
38: public MalformedQueryException(String message, Exception e) {
39: super (message, e);
40: }
41:
42: public MalformedQueryException(String message) {
43: super(message);
44: }
45: }
|