Browse Source

fixed ParseException constructor calls (SPR-6239)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2156 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 17 years ago
parent
commit
3e389eba4c
  1. 4
      org.springframework.expression/src/main/java/org/springframework/expression/ParseException.java

4
org.springframework.expression/src/main/java/org/springframework/expression/ParseException.java

@ -41,7 +41,7 @@ public class ParseException extends ExpressionException {
* @param cause the underlying cause of this exception * @param cause the underlying cause of this exception
*/ */
public ParseException(int position, String message, Throwable cause) { public ParseException(int position, String message, Throwable cause) {
super(message); super(position, message, cause);
} }
/** /**
@ -50,7 +50,7 @@ public class ParseException extends ExpressionException {
* @param message description of the problem that occurred * @param message description of the problem that occurred
*/ */
public ParseException(int position, String message) { public ParseException(int position, String message) {
super(message); super(position, message);
} }
} }

Loading…
Cancel
Save