1 package com.teamkonzept.lib; 2 3 6 public class TKConfigurationException 7 extends TKException 8 { 9 10 public TKConfigurationException (String description, 11 int _errorCode, 12 int _severity, 13 boolean _ispublic, 14 Throwable t) 15 { 16 super(description, _errorCode, _severity, _ispublic, t); 17 } 18 19 public TKConfigurationException (String description, 20 int _errorCode, 21 int _severity, 22 boolean _ispublic, 23 Object [] arguments, 24 Throwable t) 25 { 26 super(description, _errorCode, _severity, _ispublic, arguments, t); 27 } 28 29 } | Popular Tags |