Parser error message improvements: new messages

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@35 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Andy Clement 2008-08-15 00:24:22 +00:00
parent b43278a8f8
commit 50709d7e7e
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,8 @@ public enum SpelMessages {
1062, "Method call of ''{0}'' is ambiguous, supported type conversions allow multiple variants to match"), EXCEPTION_DURING_PROPERTY_WRITE(
Kind.ERROR, 1063, "A problem occurred whilst attempting to set the property ''{0}'': ''{1}''"), NOT_AN_INTEGER(
Kind.ERROR, 1064, "The value ''{0}'' cannot be parsed as an int"), NOT_A_LONG(Kind.ERROR, 1065,
"The value ''{0}'' cannot be parsed as a long"), ;
"The value ''{0}'' cannot be parsed as a long"), PARSE_PROBLEM(Kind.ERROR, 1066,
"Error occurred during expression parse: {0}"), ;
private Kind kind;
private int code;