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.sail;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * An exception thrown by some methods in Sail to indicate that a requested
12: * operation could not be executed.
13: */
14: public class SailException extends OpenRDFException {
15:
16: private static final long serialVersionUID = 2432600780159917763L;
17:
18: public SailException() {
19: super ();
20: }
21:
22: public SailException(String msg) {
23: super (msg);
24: }
25:
26: public SailException(Throwable t) {
27: super (t);
28: }
29:
30: public SailException(String msg, Throwable t) {
31: super(msg, t);
32: }
33: }
|