
|
If you were logged in you would be able to see more operations.
|
|
|
|
File Attachments:
|
1.
patch.txt (2 kB)
|
|
Environment:
|
Java 1.4 and up
|
|
Issue Links:
|
Related
|
|
This issue relates to:
|
|
OGNL-125
When OgnlException is wrapped in another exception, any exception wrapped by the OgnlException appears to be swallowed
|
|
|
|
|
|
|
|
|
OgnlException keeps the chained exception in a field and does not pass it to the super constructor.
It overrides printStackTrace to print the chained exception.
But printStackTrace is not invoked for chained exceptions since java 1.4.
Therefore, the stacktrace of B is never printed when the chain is like this: A -> OgnlException -> B
|
|
Description
|
OgnlException keeps the chained exception in a field and does not pass it to the super constructor.
It overrides printStackTrace to print the chained exception.
But printStackTrace is not invoked for chained exceptions since java 1.4.
Therefore, the stacktrace of B is never printed when the chain is like this: A -> OgnlException -> B
|
Show » |
|