@ -156,7 +156,7 @@ public enum SpelMessage {
@@ -156,7 +156,7 @@ public enum SpelMessage {
NOT_A_REAL ( Kind . ERROR , 1040 ,
"The value ''{0}'' cannot be parsed as a double" ) ,
MORE_INPUT ( Kind . ERROR , 1041 ,
MORE_INPUT ( Kind . ERROR , 1041 ,
"After parsing a valid expression, there is still more data in the expression: ''{0}''" ) ,
RIGHT_OPERAND_PROBLEM ( Kind . ERROR , 1042 ,
@ -226,21 +226,22 @@ public enum SpelMessage {
@@ -226,21 +226,22 @@ public enum SpelMessage {
"A required array dimension has not been specified" ) ,
INITIALIZER_LENGTH_INCORRECT ( Kind . ERROR , 1064 ,
"a rray initializer size does not match array dimensions" ) ,
"A rray 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 ,
"t he expression component ''{0}'' does not support increment" ) ,
"T he expression component ''{0}'' does not support increment" ) ,
OPERAND_NOT_DECREMENTABLE ( Kind . ERROR , 1067 ,
"t he expression component ''{0}'' does not support decrement" ) ,
"T he expression component ''{0}'' does not support decrement" ) ,
NOT_ASSIGNABLE ( Kind . ERROR , 1068 ,
"t he expression component ''{0}'' is not assignable" ) ,
"T he expression component ''{0}'' is not assignable" ) ,
MISSING_CHARACTER ( Kind . ERROR , 1069 ,
"m issing expected character ''{0}''" ) ,
"M issing expected character ''{0}''" ) ,
LEFT_OPERAND_PROBLEM ( Kind . ERROR , 1070 ,
"Problem parsing left operand" ) ,
@ -248,8 +249,13 @@ public enum SpelMessage {
@@ -248,8 +249,13 @@ public enum SpelMessage {
MISSING_SELECTION_EXPRESSION ( Kind . ERROR , 1071 ,
"A required selection expression has not been specified" ) ,
EXCEPTION_RUNNING_COMPILED_EXPRESSION ( Kind . ERROR , 1072 ,
"An exception occurred whilst evaluating a compiled expression" ) ;
/** @since 4.1 */
EXCEPTION_RUNNING_COMPILED_EXPRESSION ( Kind . ERROR , 1072 ,
"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 ;