MCPcopy Index your code
hub / github.com/apache/tomcat / handleThrowable

Method handleThrowable

java/jakarta/el/Util.java:44–49  ·  view source on GitHub ↗

Checks whether the supplied Throwable is one that needs to be rethrown and swallows all others. @param t the Throwable to check

(Throwable t)

Source from the content-addressed store, hash-verified

42 * @param t the Throwable to check
43 */
44 static void handleThrowable(Throwable t) {
45 if (t instanceof VirtualMachineError) {
46 throw (VirtualMachineError) t;
47 }
48 // All other instances of Throwable will be silently swallowed
49 }
50
51
52 static String message(ELContext context, String name, Object... props) {

Callers 12

notifyAfterEvaluationMethod · 0.95
newInstanceMethod · 0.95
invokeMethod · 0.95
getValueMethod · 0.95
setValueMethod · 0.95
getTypeMethod · 0.95
isReadOnlyMethod · 0.95
getValueMethod · 0.95
setValueMethod · 0.95
invokeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected