KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > db > TKDatabaseException


1 package com.teamkonzept.db;
2
3 import com.teamkonzept.lib.TKException;
4
5 /**
6     this is the wrapper class for all database related Exceptions
7 */

8 public class TKDatabaseException
9     extends TKException
10 {
11
12     public TKDatabaseException (String JavaDoc description,
13                                 int _errorCode,
14                                 int _severity,
15                                 boolean _ispublic,
16                                 Throwable JavaDoc t)
17     {
18         super(description, _errorCode, _severity, _ispublic, t);
19     }
20
21     public TKDatabaseException (String JavaDoc description,
22                                 int _errorCode,
23                                 int _severity,
24                                 boolean _ispublic,
25                                 Object JavaDoc[] arguments,
26                                 Throwable JavaDoc t)
27     {
28         super(description, _errorCode, _severity, _ispublic, arguments, t);
29     }
30
31 }
Popular Tags