Is there a way to enable intellij to show a warning when trying to call a suspend function that can error without using try catch?
🚫 1
v
Vaizin Nikita
11/23/2024, 3:26 PM
You can use a result-handling monad for this. That way, you won't be able to get the return type of the function without handling errors, I have made one such for myself