1 package com.teamkonzept.webman.mainint.events; 2 3 import com.teamkonzept.lib.TKException; 4 5 8 public class TKUserException 9 extends TKException 10 implements UserCodes 11 { 12 13 public TKUserException (String description, 14 int _errorCode, 15 int _severity, 16 boolean _ispublic, 17 Throwable t) 18 { 19 super(description, _errorCode, _severity, _ispublic, t); 20 } 21 22 public TKUserException (String description, 23 int _errorCode, 24 int _severity, 25 boolean _ispublic, 26 Object [] arguments, 27 Throwable t) 28 { 29 super(description, _errorCode, _severity, _ispublic, arguments, t); 30 } 31 32 } | Popular Tags |