static RuntimeException rethrow(Throwable t) { ifndef LeanMode if (t instanceof Error) _handleError((Error) t); endifndef throw t instanceof RuntimeException ? (RuntimeException) t : new RuntimeException(t); } static RuntimeException rethrow(S msg, Throwable t) { throw new RuntimeException(msg, t); }