fun foo(): Flow<Int> = flow { emit(1) throw RuntimeException() } fun main() ... { cause -> println("Caught exception") } .collect { value -> println(value) ...
確定! 回上一頁