root/trunk/src/xml/fwk-rte-info.xml

Revision 1609, 7.8 kB (checked in by amandel, 2 years ago)

Cleaned ASSERTION_FAILED error message.

  • Property svn:mime-type set to text/xml
  • Property svn:eol-style set to native
Line 
1<!-- =============================================
2     Runtime Errors
3     ============================================= -->
4<group
5   id="1"
6   name="Runtime Error"
7   short-name="RTE"
8   package="org.jcoderz.commons"
9   base-exception="org.jcoderz.commons.BaseRuntimeException">
10   <message
11      id="1"
12      name="INTERNAL_ERROR"
13      level="SEVERE"
14      base-exception="org.jcoderz.commons.RuntimeErrorException">
15      <text>
16         The system encountered an unexpected condition, or contains
17         a software bug. Details: {TECHNICAL_DESCRIPTION}.
18      </text>
19      <solution>
20         Review the log file to determine the problem that led
21         to the error condition.
22      </solution>
23   </message>
24
25   <message
26      id="2"
27      name="ARGUMENT_MALFORMED"
28      level="WARNING"
29      base-exception="org.jcoderz.commons.BaseRuntimeException">
30      <text>
31         The given argument is at least partly malformed.
32         Argument ''{ARGUMENT_NAME}'' cannot be set to
33         value ''{Serializable:ARGUMENT_VALUE}''. Detailed description: {HINT}.
34      </text>
35      <solution>
36         Supply a correct value for the argument.
37      </solution>
38   </message>
39
40   <message
41      id="3"
42      name="ASSERTION_FAILED"
43      level="SEVERE"
44      base-exception="org.jcoderz.commons.BaseRuntimeException">
45      <text>
46         Assertion failed. A condition is tested
47         and found to be false. Message: {MESSAGE}.
48      </text>
49      <solution>
50         .
51      </solution>
52   </message>
53
54   <message
55      id="4"
56      name="INCONSISTENT_DATABASE"
57      level="SEVERE"
58      base-exception="org.jcoderz.commons.BaseRuntimeException">
59      <text>
60         A value read from the database was invalid.
61         The database value {Serializable:ARGUMENT_VALUE} of column
62         {COLUMN} in table {TABLE} could not be converted into
63         the java type {TYPE}. Possibly the database has been
64         modified manually, or the software that wrote the database
65         contains a bug.
66      </text>
67      <solution>
68         Correct the value in the database if modified manually.
69      </solution>
70   </message>
71
72   <message
73      id="5"
74      name="REMOTE_CALL_FAILURE"
75      level="SEVERE"
76      base-exception="org.jcoderz.commons.RuntimeErrorException">
77      <text>
78         The call to a internal remote object failed.
79      </text>
80      <solution>
81         Review the log file to determine the problem that led
82         to the error condition.
83      </solution>
84   </message>
85
86   <message
87      id="6"
88      name="DATABASE_INTEGRITY_ERROR"
89      level="SEVERE"
90      base-exception="org.jcoderz.commons.InconsistentDatabaseException">
91      <text>
92         While accessing table {TABLE}, the following problem was
93         encountered: {PROBLEM}.
94      </text>
95      <solution>
96         Review the log file to determine the problem that led
97         to the error condition.
98      </solution>
99   </message>
100
101   <message
102      id="7"
103      name="DATABASE_ACCESS_FAILED"
104      level="SEVERE"
105      base-exception="org.jcoderz.commons.RuntimeErrorException">
106      <text>
107         The system encountered an exception while accessing a database.
108      </text>
109      <solution>
110         Review the log file to determine the problem that led
111         to the error condition.
112      </solution>
113   </message>
114   <message
115      id="8"
116      name="ARGUMENT_MAX_LENGTH_VIOLATION"
117      level="WARNING"
118      base-exception="org.jcoderz.commons.ArgumentMalformedException">
119      <text>
120         The given argument is at least partly malformed.
121         Argument ''{ARGUMENT_NAME}'' cannot be set to
122         value ''{Serializable:ARGUMENT_VALUE}''. The length of the Value
123         ({Integer:ARGUMENT_LENGTH}) exceeds the allowed maximum length
124         ({Integer:MAX_LENGTH}) for {Class:ARGUMENT_CLASS}.
125      </text>
126      <solution>
127         Supply a correct value for the argument.
128      </solution>
129   </message>
130   <message
131      id="9"
132      name="ARGUMENT_MIN_LENGTH_VIOLATION"
133      level="WARNING"
134      base-exception="org.jcoderz.commons.ArgumentMalformedException">
135      <text>
136         The given argument is at least partly malformed.
137         Argument ''{ARGUMENT_NAME}'' cannot be set to
138         value ''{Serializable:ARGUMENT_VALUE}''. The length of the Value
139         ({Integer:ARGUMENT_LENGTH}) is below the allowed minimum length
140         ({Integer:MIN_LENGTH}) for {Class:ARGUMENT_CLASS}.
141      </text>
142      <solution>
143         Supply a correct value for the argument.
144      </solution>
145   </message>
146   <message
147      id="10"
148      name="ARGUMENT_MAX_VALUE_VIOLATION"
149      level="WARNING"
150      base-exception="org.jcoderz.commons.ArgumentMalformedException">
151      <text>
152         The given argument is at least partly malformed.
153         Argument ''{ARGUMENT_NAME}'' cannot be set to
154         value ''{Serializable:ARGUMENT_VALUE}''. The value
155         exceeds the allowed maximum ({Number:MAX_VALUE})
156         for {Class:ARGUMENT_CLASS}.
157      </text>
158      <solution>
159         Supply a correct value for the argument.
160      </solution>
161   </message>
162   <message
163      id="11"
164      name="ARGUMENT_MIN_VALUE_VIOLATION"
165      level="WARNING"
166      base-exception="org.jcoderz.commons.ArgumentMalformedException">
167      <text>
168         The given argument is at least partly malformed.
169         Argument ''{ARGUMENT_NAME}'' cannot be set to
170         value ''{Serializable:ARGUMENT_VALUE}''. The value
171         is below {Number:MIN_VALUE}, the allowed minimum
172         for {Class:ARGUMENT_CLASS}.
173      </text>
174      <solution>
175         Supply a correct value for the argument.
176      </solution>
177   </message>
178   <message
179      id="12"
180      name="ARGUMENT_PATTERN_VIOLATION"
181      level="WARNING"
182      base-exception="org.jcoderz.commons.ArgumentMalformedException">
183      <text>
184         The given argument is at least partly malformed.
185         Argument ''{ARGUMENT_NAME}'' cannot be set to
186         value ''{Serializable:ARGUMENT_VALUE}''. The value
187         does not match the restrictive pattern
188         ''{String:PATTERN}'' for {Class:ARGUMENT_CLASS}.
189      </text>
190      <solution>
191         Supply a correct value for the argument.
192      </solution>
193   </message>
194   <message
195      id="13"
196      name="ARGUMENT_FRACTION_DIGITS_VIOLATION"
197      level="WARNING"
198      base-exception="org.jcoderz.commons.ArgumentMalformedException">
199      <text>
200         The given argument is at least partly malformed.
201         Argument ''{ARGUMENT_NAME}'' cannot be set to
202         value ''{Serializable:ARGUMENT_VALUE}''. The value
203         has {Number:ARGUMENT_FRACTION_DIGITS} fraction digits and
204         exceeds the allowed maximum {Number:MAX_FRACTION_DIGITS}
205         for {Class:ARGUMENT_CLASS}.
206      </text>
207      <solution>
208         Supply a correct value for the argument.
209      </solution>
210   </message>
211   <message
212      id="14"
213      name="UNEXPECTED_EXCEPTION"
214      level="SEVERE"
215      base-exception="org.jcoderz.commons.BaseRuntimeException">
216      <text>
217         An exeption occured that was not expected in the current
218         code.
219      </text>
220      <solution>
221         .
222      </solution>
223   </message>
224   <message
225      id="15"
226      name="EXCEPTION_CREATED"
227      level="FINE">
228      <text>
229        An Exception with symbol {SYMBOL} has been created.
230        Exception Message is: {MESSAGE}
231      </text>
232      <solution>
233        This fact is just written for the records here for the records. There is
234        normally no action needed. This is just for debugging purposes.
235      </solution>
236   </message>
237   <message
238      id="16"
239      name="RUNTIME_EXCEPTION_CREATED"
240      level="FINE">
241      <text>
242        An RuntimeException with symbol {SYMBOL} has been created.
243        Exception Message is: {MESSAGE}
244      </text>
245      <solution>
246        This fact is just written for the records here for the records. There is
247        normally no action needed. This is just for debugging purposes.
248      </solution>
249   </message>
250</group>
Note: See TracBrowser for help on using the browser.