Eugene
Results
2
issues of
Eugene
Example: ```kotlin runBlocking { try { newSuspendedTransaction { println("Try to insert...") throw RuntimeException("Fail") } } catch (i: Exception) { println("Seems record exists, then...") } newSuspendedTransaction { println("Try to update...") println("Success")...
waiting for reply