Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package ist.coach.coachEmfCommon; 2 3 public class ExceptionMessages { 4 5 public static final String not_exists_error = " Object does not exist!"; 6 public static final String already_exists_error = " Object aready exists!"; 7 8 public static final String namebinding_exists_error = 9 " The object is not a valid child for the selected parent!"; 10 11 public static final String namebinding_field_error = 12 " The specified rules to allow this creation are incomplete !"; 13 14 public static final String factory_not_exists_error = 15 " The appropriate factory can not be located!"; 16 17 public static final String parent_object_error = 18 " Parent Object does not exist!"; 19 20 public static final String facade_not_exists_error = 21 " The appropriate facade can not be located!"; 22 23 public static final String root_delete_error = 24 " It is not allowed to delete root object!"; 25 26 public static final String contains_object_error = 27 " Object can not be deleted. It contains other objects!"; 28 29 public static final String manager_delete_error = 30 " Object can not be deleted by managers!"; 31 32 public static final String manager_create_error = 33 " Object can not be created by managers!"; 34 35 37 public static final String uknown_trap_error = 38 " Received trap type can not be identified.."; 39 public static final String uknown_trap_source_error = 40 " Trap originator can not be identified.."; 41 public static final String uknown_trap_origin_error = 42 " Trap originator can not be located..."; 43 public static final String trap_misconfig_error = 44 " Trap daemon does not contain proper information to process received traps!"; 45 public static final String agent_response_error = 46 " There was a problem communicating with the SNMP Agent of the element..."; 47 public static final String agent_create_error = 48 " SNMP Trap deamon internal error!"; 49 public static final String agent_get_error = 50 " There was a problem getting attribute value from the SNMP agent"; 51 public static final String agent_set_error = 52 " There was a problem setting attribute value of the SNMP agent"; 53 public static final String snmp_register_error = 54 " Object is already registered with the SNMP Adapter!"; 55 public static final String snmp_superior_error = 56 " Object parent is not registered with the SNMP Adapter!"; 57 public static final String snmp_unregister_error = 58 " Object is not registered with the SNMP Adapter!"; 59 public static final String snmp_host_resolve_error = 60 " Host cannot be resolved!"; 61 62 } 63
| Popular Tags
|