Eugene
Eugene
> Hi @davydes , it's a normal behavior as the whole `runBlocking` scope is interrupted when the exception is thrown. > Please read more about exceptions and coroutines [here](https://kotlinlang.org/docs/reference/coroutines/exception-handling.html) or...
Also I can rewrite code: ```kotlin runBlocking { try { withContext(IO) { transaction { println("Try to insert...") throw RuntimeException("Fail") } } } catch (i: Exception) { println("Seems record exists, then...")...
Does not boot on Enuma. Black screen.