Kkigyainkigya.hashnode.dev·May 2 · 19 min readThe Dangerous Side of Kotlin ResultKotlin Result looks very useful. We have an operation that can fail: val user = api.loadUser() We wrap it with runCatching: val result = runCatching { api.loadUser() } And that is it. No big try10