Is there an IDE inspection or Detekt rule that can remind me about handling `CancellationException` ...
e
Is there an IDE inspection or Detekt rule that can remind me about handling
CancellationException
when I only use
Copy code
try {
 ... 
} catch (e: Exception) {
 ... 
}
❤️ 4
2