01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.persistence.sleepycat;
05:
06: import com.tc.exception.TCRuntimeException;
07:
08: public class DBException extends TCRuntimeException {
09:
10: public DBException(String message, Throwable t) {
11: super (message, t);
12: }
13:
14: public DBException(Throwable t) {
15: //super((t instanceof RuntimeExceptionWrapper) ? ((RuntimeExceptionWrapper)t).getDetail() : t);
16: super (t);
17: }
18:
19: public DBException(String string) {
20: super(string);
21: }
22:
23: }
|