Error in File:
package org.dbe.servent.filter
ServiceFilterChainImpl.java based on CVS Version 1.3
Based on the following behavior:
1) in line 106 all Throwables are catched.
2) in line 108 the reference to this Throwable is set in the Response Object.
The following issue can appear:
If the Throwable is not an Exception but an Error (e.g. java.lang.NoClassDefFoundError) an error occures because the Response objects expects a subclass of type Exception and not a subclass of type Throwable. Is this is fine for exceptions this leads to unexpected results when errors are raised which implement Throwable but are NOT subclasses of Exception.
See attachment for error log.
Error log extract showing the resulting error of this issue