01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf;
07:
08: /**
09: * General superclass of all checked exceptions that parts of OpenRDF Sesame can throw.
10: *
11: * @author jeen
12: */
13: public abstract class OpenRDFException extends Exception {
14:
15: public OpenRDFException() {
16: super ();
17: }
18:
19: public OpenRDFException(String msg) {
20: super (msg);
21: }
22:
23: public OpenRDFException(Throwable t) {
24: super (t);
25: }
26:
27: public OpenRDFException(String msg, Throwable t) {
28: super(msg, t);
29: }
30: }
|