203204205206207208209210
if (ex instanceof Error) { throw (Error) ex; } else if (ex instanceof RuntimeException) { return (RuntimeException) ex; } else { return new CheckedException(ex); } }