01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.objectserver.persistence.sleepycat;
06:
07: import com.sleepycat.je.DatabaseException;
08: import com.tc.exception.TCException;
09:
10: public class TCDatabaseException extends TCException {
11: public TCDatabaseException(DatabaseException cause) {
12: super (cause);
13: }
14:
15: public TCDatabaseException(String message) {
16: super(message);
17: }
18: }
|