fixed ParseException constructor calls (SPR-6239)

This commit is contained in:
Juergen Hoeller 2009-10-19 12:59:17 +00:00
parent db2ff40e4b
commit a7f0d50643
1 changed files with 2 additions and 2 deletions

View File

@ -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);
} }
} }