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: public class QueryLanguageNotSupportedException extends
14: ModelRuntimeException {
15:
16: /**
17: *
18: */
19: private static final long serialVersionUID = 5838150544926081712L;
20:
21: public QueryLanguageNotSupportedException(Exception e) {
22: super (e);
23: }
24:
25: public QueryLanguageNotSupportedException(String message) {
26: super (message);
27: }
28:
29: public QueryLanguageNotSupportedException(String message,
30: Exception e) {
31: super (message, e);
32: }
33:
34: public QueryLanguageNotSupportedException() {
35: super (
36: "The given query language is not supported by this adapter.");
37: }
38: }
|