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