Minor fix to ensure compilation with Java 1.5 JDK

This commit is contained in:
Rossen Stoyanchev
2010-08-31 23:12:07 +00:00
parent 9dc9a6eb45
commit a5798b8ff7

View File

@@ -180,7 +180,9 @@ public abstract class AbstractAuthorizeTag {
accessExpression = handler.getExpressionParser().parseExpression(getAccess());
} catch (ParseException e) {
throw new IOException(e);
IOException ioException = new IOException();
ioException.initCause(e);
throw ioException;
}
FilterInvocation f = new FilterInvocation(getRequest(), getResponse(), new FilterChain() {