package com.sleepycat.je; import de.ovgu.cide.jakutil.*; /** * Javadoc for this public class is generated * via the doc templates in the doc_src directory. */ public class DatabaseException extends Exception { public DatabaseException(){ super(); } public DatabaseException( Throwable t){ super(t); } public DatabaseException( String message){ super(message); } public DatabaseException( String message, Throwable t){ super(message,t); } }