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.repository;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * An exception thrown classes from the Repository API to indicate an error.
12: * Most of the time, this exception will wrap another exception that indicates
13: * the actual source of the error.
14: */
15: public class RepositoryException extends OpenRDFException {
16:
17: private static final long serialVersionUID = -5345676977796873420L;
18:
19: public RepositoryException() {
20: super ();
21: }
22:
23: public RepositoryException(String msg) {
24: super (msg);
25: }
26:
27: public RepositoryException(Throwable t) {
28: super (t);
29: }
30:
31: public RepositoryException(String msg, Throwable t) {
32: super(msg, t);
33: }
34: }
|