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