1 8 9 package com.sleepycat.je.dbi; 10 11 import com.sleepycat.je.DatabaseException; 12 13 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 } 30 | Popular Tags |