KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > events > TKUserException


1 package com.teamkonzept.webman.mainint.events;
2
3 import com.teamkonzept.lib.TKException;
4
5 /**
6     this is the wrapper class for all user caused Exceptions
7 */

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