Files
kotlin-fork/js/js.translator/testData/expression/try/cases/rethrowExceptionIfNotCaught.kt
T
2014-10-09 19:31:51 +04:00

23 lines
375 B
Kotlin
Vendored

package foo
fun catchSomeExceptions(e: Exception) {
try {
throw e
}
catch (e: NullPointerException) { }
catch(e: IllegalArgumentException) { }
fail("should not reach this point")
}
fun box(): String {
try {
catchSomeExceptions(RuntimeException())
} catch(e: RuntimeException) {
return "OK"
}
return "Not OK"
}