<@U0CP8EBRV> Instead of rewriting those methods, y...
# announcements
b
@Czar Instead of rewriting those methods, you could do something like
Copy code
inline fun noFlyZone(action: () -> Unit) {
    try {
        action()
    } catch (t: Throwable) {
        //Do your worst
    }
}