1 package com.teamkonzept.field.db; 2 3 public class TKFieldDataDBError extends Error { 4 5 public String what; 6 public String type; 7 public int id; 8 public String name; 9 10 18 public TKFieldDataDBError (String what, String type, int id, String formName) { 19 super("Missing entry for object "+type+" in table "+what+": "+id); 20 this.what = what; 21 this.type = type; 22 this.id = id; 23 name = formName; 24 } 25 26 34 public TKFieldDataDBError (String what, String type, int id) { 35 super("Missing entry for object "+type+" in table "+what+": "+id); 36 this.what = what; 37 this.type = type; 38 this.id = id; 39 } 40 } 41 42 43 | Popular Tags |