mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
10 lines
178 B
Kotlin
Vendored
10 lines
178 B
Kotlin
Vendored
try {
|
|
try {
|
|
throw Exception("Error!")
|
|
} catch (e: Exception) {
|
|
throw Exception("Oh no", e)
|
|
}
|
|
} catch (e: Exception) {
|
|
throw Exception("Top", e)
|
|
}
|