Mason M
03/02/2022, 9:19 PMRuckus
03/02/2022, 9:24 PMcatch (e: CertainType) {
// Do nothing
} catch (e: Throwable) {
...
}
Mason M
03/02/2022, 9:28 PMephemient
03/02/2022, 9:36 PM} catch (e: CertainType) {
throw e
} catch (e: Throwable) {
...
}
is more likely to be the right thing to do (for propagating CancellationException, InterruptedException, OutOfMemoryError, etc.)