db23460fd5
#KT-42335 fixed
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)
|
|
}
|