this can be problematic when using Java libraries:...
# announcements
m
this can be problematic when using Java libraries:
Copy code
try {
        try{
            throw Throwable()
        } catch(e: Exception) {
            println("Throwable was caught")
        }
    } catch(t: Throwable) {
        println("Throwable was not caught")
    }