Wouter Vegter
02/07/2019, 2:32 PMansman
02/07/2019, 4:25 PMCancellationException
should be ignored, they are a part of the internals of coroutines and shouldn’t be loggedrunBlocking {
withTimeoutOrNull(200) {
// Will throw a CancellationException after
// waiting for 200ms
delay(400)
}
}
Wouter Vegter
02/07/2019, 4:50 PM