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:
09: public class DatabaseDirtyException extends TCDatabaseException
10: implements com.tc.exception.DatabaseException {
11:
12: public DatabaseDirtyException(DatabaseException cause) {
13: super (cause);
14: }
15:
16: public DatabaseDirtyException(String message) {
17: super(message);
18: }
19:
20: }
|