is it possible to find where an exception is thrown? maybe by selecting find usage on the catch statement?
c
Czar
06/27/2018, 12:03 PM
You can find usage on exception class, otherwise all exceptions in Kotlin are Runtime, so no.
h
Hamza
06/27/2018, 12:59 PM
maybe try using the debugger?
c
christophsturm
06/27/2018, 1:05 PM
in java you can find usages on a throws clause and it shows you where in the method the exception is thrown. i guess even with unchecked exceptions idea will know what exceptions are thrown where, and it could find them
c
Czar
06/27/2018, 5:40 PM
I think I remember an issue filed on YouTrack about this, try searching for it and give a vote
c
christophsturm
06/27/2018, 7:52 PM
I did not find it i just created a new feature request issue, let’s see if its going to be marked as a duplicate.