01: package com.teamkonzept.db;
02:
03: import com.teamkonzept.lib.TKException;
04:
05: /**
06: this is the wrapper class for all database related Exceptions
07: */
08: public class TKDatabaseException extends TKException {
09:
10: public TKDatabaseException(String description, int _errorCode,
11: int _severity, boolean _ispublic, Throwable t) {
12: super (description, _errorCode, _severity, _ispublic, t);
13: }
14:
15: public TKDatabaseException(String description, int _errorCode,
16: int _severity, boolean _ispublic, Object[] arguments,
17: Throwable t) {
18: super(description, _errorCode, _severity, _ispublic, arguments,
19: t);
20: }
21:
22: }
|