01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.config;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * Exception indicating a sail configuration problem.
12: *
13: * @author Arjohn Kampman
14: */
15: public class SailConfigException extends OpenRDFException {
16:
17: private static final long serialVersionUID = 185213210952981723L;
18:
19: public SailConfigException() {
20: super ();
21: }
22:
23: public SailConfigException(String message) {
24: super (message);
25: }
26:
27: public SailConfigException(Throwable t) {
28: super (t);
29: }
30:
31: public SailConfigException(String message, Throwable t) {
32: super(message, t);
33: }
34: }
|