1 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 message, Throwable t) { 11 super(message, t); 12 } 13 14 public DBException(Throwable t) { 15 super(t); 17 } 18 19 public DBException(String string) { 20 super(string); 21 } 22 23 } 24 | Popular Tags |