Mason M
Ruckus
catch (e: CertainType) { // Do nothing } catch (e: Throwable) { ... }
ephemient
} catch (e: CertainType) { throw e } catch (e: Throwable) { ... }
A modern programming language that makes developers happier.