KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > persistence > sleepycat > DBException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.persistence.sleepycat;
5
6 import com.tc.exception.TCRuntimeException;
7
8 public class DBException extends TCRuntimeException {
9
10   public DBException(String JavaDoc message, Throwable JavaDoc t) {
11     super(message, t);
12   }
13   
14   public DBException(Throwable JavaDoc t) {
15     //super((t instanceof RuntimeExceptionWrapper) ? ((RuntimeExceptionWrapper)t).getDetail() : t);
16
super(t);
17   }
18   
19   public DBException(String JavaDoc string) {
20     super(string);
21   }
22
23 }
24
Popular Tags