Is there an IDE inspection or Detekt rule that can...
# random
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) {
 ... 
}
2
❤️ 4