KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > dbi > DbConfigException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: DbConfigException.java,v 1.14 2006/10/30 21:14:15 bostic Exp $
7  */

8
9 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 JavaDoc t) {
19         super(t);
20     }
21
22     public DbConfigException(String JavaDoc message) {
23     super(message);
24     }
25
26     public DbConfigException(String JavaDoc message, Throwable JavaDoc t) {
27         super(message, t);
28     }
29 }
30
Popular Tags