dnowak
12/07/2019, 11:03 AMInterruptedException
is considered as fatal? Found this in arrow.core.NonFatal
fun NonFatal(t: Throwable): Boolean =
when (t) {
is VirtualMachineError, is ThreadDeath, is InterruptedException, is LinkageError -> false
else -> true
}
Imran/Malic
12/07/2019, 11:17 AMTry
, but Try
is deprecated.
Maybe @pakoito or @simon.vergauwen can help.pakoito
12/07/2019, 2:40 PMdnowak
12/07/2019, 10:05 PMdnowak
12/07/2019, 10:08 PMdnowak
12/07/2019, 10:10 PMdnowak
12/07/2019, 10:16 PMdnowak
12/07/2019, 11:18 PM