Checks whether the supplied Throwable is one that needs to be rethrown and swallows all others. @param t the Throwable to check
(Throwable t)
| 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) { |
no outgoing calls
no test coverage detected