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.repository.config;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * Exception indicating a repository configuration problem.
12: *
13: * @author Arjohn Kampman
14: */
15: public class RepositoryConfigException extends OpenRDFException {
16:
17: private static final long serialVersionUID = -6643040675968955429L;
18:
19: public RepositoryConfigException() {
20: super ();
21: }
22:
23: public RepositoryConfigException(String message) {
24: super (message);
25: }
26:
27: public RepositoryConfigException(Throwable t) {
28: super (t);
29: }
30:
31: public RepositoryConfigException(String message, Throwable t) {
32: super(message, t);
33: }
34: }
|