4142434445464748
throw (Error) throwable; } if (throwable instanceof RuntimeException) { return (RuntimeException) throwable; } else { return new UncheckedException(throwable); } }
6465666768697071
throw (Error) throwable; } if (throwable instanceof Exception) { return (Exception) throwable; } else { return new UncheckedException(throwable); } }