KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ist > coach > coachEmfCommon > ExceptionMessages


1 package ist.coach.coachEmfCommon;
2
3 public class ExceptionMessages {
4
5 public static final String JavaDoc not_exists_error = " Object does not exist!";
6 public static final String JavaDoc already_exists_error = " Object aready exists!";
7
8 public static final String JavaDoc namebinding_exists_error =
9              " The object is not a valid child for the selected parent!";
10
11 public static final String JavaDoc namebinding_field_error =
12              " The specified rules to allow this creation are incomplete !";
13
14 public static final String JavaDoc factory_not_exists_error =
15                          " The appropriate factory can not be located!";
16
17 public static final String JavaDoc parent_object_error =
18                          " Parent Object does not exist!";
19
20 public static final String JavaDoc facade_not_exists_error =
21                          " The appropriate facade can not be located!";
22
23 public static final String JavaDoc root_delete_error =
24                 " It is not allowed to delete root object!";
25
26 public static final String JavaDoc contains_object_error =
27                 " Object can not be deleted. It contains other objects!";
28
29 public static final String JavaDoc manager_delete_error =
30                 " Object can not be deleted by managers!";
31
32 public static final String JavaDoc manager_create_error =
33                 " Object can not be created by managers!";
34
35             // SNMP Adapter Error Strings
36

37 public static final String JavaDoc uknown_trap_error =
38             " Received trap type can not be identified..";
39 public static final String JavaDoc uknown_trap_source_error =
40             " Trap originator can not be identified..";
41 public static final String JavaDoc uknown_trap_origin_error =
42             " Trap originator can not be located...";
43 public static final String JavaDoc trap_misconfig_error =
44             " Trap daemon does not contain proper information to process received traps!";
45 public static final String JavaDoc agent_response_error =
46             " There was a problem communicating with the SNMP Agent of the element...";
47 public static final String JavaDoc agent_create_error =
48             " SNMP Trap deamon internal error!";
49 public static final String JavaDoc agent_get_error =
50             " There was a problem getting attribute value from the SNMP agent";
51 public static final String JavaDoc agent_set_error =
52             " There was a problem setting attribute value of the SNMP agent";
53 public static final String JavaDoc snmp_register_error =
54             " Object is already registered with the SNMP Adapter!";
55 public static final String JavaDoc snmp_superior_error =
56             " Object parent is not registered with the SNMP Adapter!";
57 public static final String JavaDoc snmp_unregister_error =
58             " Object is not registered with the SNMP Adapter!";
59 public static final String JavaDoc snmp_host_resolve_error =
60             " Host cannot be resolved!";
61
62 }
63
Popular Tags