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: * The intended type of reasoning is not supported by this Adapter.
15: * @author sauermann
16: */
17: public class ReasoningNotSupportedException extends
18: ModelRuntimeException {
19:
20: /**
21: *
22: */
23: private static final long serialVersionUID = -4932937519782507187L;
24:
25: /**
26: *
27: */
28: public ReasoningNotSupportedException() {
29: super ();
30: }
31:
32: /**
33: * @param message
34: * @param cause
35: */
36: public ReasoningNotSupportedException(String message,
37: Throwable cause) {
38: super (message, cause);
39: }
40:
41: /**
42: * @param message
43: */
44: public ReasoningNotSupportedException(String message) {
45: super (message);
46: }
47:
48: /**
49: * @param cause
50: */
51: public ReasoningNotSupportedException(Throwable cause) {
52: super(cause);
53: }
54:
55: }
|