1 5 package com.teamkonzept.field.db; 6 7 public class TKFormDBError extends Error { 8 9 public String table; 10 public String classId; 11 public int id; 12 13 20 public TKFormDBError (String table, String classId, int id) { 21 super("Missing entry for object "+classId+" in table "+table+": "+id); 22 this.table = table; 23 this.classId = classId; 24 this.id = id; 25 } 26 27 } 31 32 | Popular Tags |