|
|
|
@ -226,21 +226,22 @@ public enum SpelMessage { |
|
|
|
"A required array dimension has not been specified"), |
|
|
|
"A required array dimension has not been specified"), |
|
|
|
|
|
|
|
|
|
|
|
INITIALIZER_LENGTH_INCORRECT(Kind.ERROR, 1064, |
|
|
|
INITIALIZER_LENGTH_INCORRECT(Kind.ERROR, 1064, |
|
|
|
"array initializer size does not match array dimensions"), |
|
|
|
"Array initializer size does not match array dimensions"), |
|
|
|
|
|
|
|
|
|
|
|
UNEXPECTED_ESCAPE_CHAR(Kind.ERROR, 1065, "unexpected escape character."), |
|
|
|
UNEXPECTED_ESCAPE_CHAR(Kind.ERROR, 1065, |
|
|
|
|
|
|
|
"Unexpected escape character"), |
|
|
|
|
|
|
|
|
|
|
|
OPERAND_NOT_INCREMENTABLE(Kind.ERROR, 1066, |
|
|
|
OPERAND_NOT_INCREMENTABLE(Kind.ERROR, 1066, |
|
|
|
"the expression component ''{0}'' does not support increment"), |
|
|
|
"The expression component ''{0}'' does not support increment"), |
|
|
|
|
|
|
|
|
|
|
|
OPERAND_NOT_DECREMENTABLE(Kind.ERROR, 1067, |
|
|
|
OPERAND_NOT_DECREMENTABLE(Kind.ERROR, 1067, |
|
|
|
"the expression component ''{0}'' does not support decrement"), |
|
|
|
"The expression component ''{0}'' does not support decrement"), |
|
|
|
|
|
|
|
|
|
|
|
NOT_ASSIGNABLE(Kind.ERROR, 1068, |
|
|
|
NOT_ASSIGNABLE(Kind.ERROR, 1068, |
|
|
|
"the expression component ''{0}'' is not assignable"), |
|
|
|
"The expression component ''{0}'' is not assignable"), |
|
|
|
|
|
|
|
|
|
|
|
MISSING_CHARACTER(Kind.ERROR, 1069, |
|
|
|
MISSING_CHARACTER(Kind.ERROR, 1069, |
|
|
|
"missing expected character ''{0}''"), |
|
|
|
"Missing expected character ''{0}''"), |
|
|
|
|
|
|
|
|
|
|
|
LEFT_OPERAND_PROBLEM(Kind.ERROR, 1070, |
|
|
|
LEFT_OPERAND_PROBLEM(Kind.ERROR, 1070, |
|
|
|
"Problem parsing left operand"), |
|
|
|
"Problem parsing left operand"), |
|
|
|
@ -248,8 +249,13 @@ public enum SpelMessage { |
|
|
|
MISSING_SELECTION_EXPRESSION(Kind.ERROR, 1071, |
|
|
|
MISSING_SELECTION_EXPRESSION(Kind.ERROR, 1071, |
|
|
|
"A required selection expression has not been specified"), |
|
|
|
"A required selection expression has not been specified"), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @since 4.1 */ |
|
|
|
EXCEPTION_RUNNING_COMPILED_EXPRESSION(Kind.ERROR, 1072, |
|
|
|
EXCEPTION_RUNNING_COMPILED_EXPRESSION(Kind.ERROR, 1072, |
|
|
|
"An exception occurred whilst evaluating a compiled expression"); |
|
|
|
"An exception occurred whilst evaluating a compiled expression"), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @since 4.3.17 */ |
|
|
|
|
|
|
|
FLAWED_PATTERN(Kind.ERROR, 1073, |
|
|
|
|
|
|
|
"Failed to efficiently evaluate pattern ''{0}'': consider redesigning it"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Kind kind; |
|
|
|
private final Kind kind; |
|
|
|
|