5dbab2f907
#KT-21165: Fixed
11 lines
207 B
Kotlin
Vendored
11 lines
207 B
Kotlin
Vendored
suspend fun catchException(): String {
|
|
try {
|
|
return suspendWithException()
|
|
}
|
|
catch(e: Exception) {
|
|
return e.message!!
|
|
}
|
|
}
|
|
|
|
suspend fun suspendWithException(): String = TODO()
|