
|
If you were logged in you would be able to see more operations.
|
|
|
|
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 » |
|