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: * A runtime exception thrown if a method offers a choice of syntaxes, but the
15: * chosen syntax is not supported by the adapter.
16: *
17: * @author voelkel
18: *
19: */
20: public class SyntaxNotSupportedException extends ModelRuntimeException {
21:
22: /**
23: *
24: */
25: private static final long serialVersionUID = -5225692503846334223L;
26:
27: public SyntaxNotSupportedException() {
28: super ();
29: }
30:
31: public SyntaxNotSupportedException(Exception e) {
32: super (e);
33: }
34:
35: public SyntaxNotSupportedException(String message, Exception e) {
36: super (message, e);
37: }
38:
39: public SyntaxNotSupportedException(String message) {
40: super(message);
41: }
42:
43: }
|