01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/field/db/TKFormDBError.java,v 1.6 2000/06/01 15:02:55 alex Exp $
03: *
04: */
05: package com.teamkonzept.field.db;
06:
07: public class TKFormDBError extends Error {
08:
09: public String table;
10: public String classId;
11: public int id;
12:
13: //********************************************************
14: /** Konstruktor
15: *
16: * @param String what, bei welchem Objekt der Fehler aufgetreten ist
17: * @param String type, der Typ des Objektes
18: * @param String Info, die ID des Objektes
19: */
20: public TKFormDBError(String table, String classId, int id) {
21: super ("Missing entry for object " + classId + " in table "
22: + table + ": " + id);
23: this .table = table;
24: this .classId = classId;
25: this .id = id;
26: }
27:
28: //{{DECLARE_CONTROLS
29: //}}
30: }//end class
|