01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: DbConfigException.java,v 1.14.2.2 2008/01/07 15:14:09 cwl Exp $
07: */
08:
09: package com.sleepycat.je.dbi;
10:
11: import com.sleepycat.je.DatabaseException;
12:
13: /**
14: * Configuration related exceptions.
15: */
16: public class DbConfigException extends DatabaseException {
17:
18: public DbConfigException(Throwable t) {
19: super (t);
20: }
21:
22: public DbConfigException(String message) {
23: super (message);
24: }
25:
26: public DbConfigException(String message, Throwable t) {
27: super(message, t);
28: }
29: }
|