Hi, is there any way to see all the exceptions tha...
# android-studio
r
Hi, is there any way to see all the exceptions that I throw in my code? I just want to review them
r
I think you misunderstood the question. I am trying to search for location in my code where I throw exceptions
e
Search for
throw
?
e
r
searching works. thanks
e
but note that it'll be incomplete. plenty of other constructs can throw exceptions:
!!
,
lateinit
,
[]
,
TODO()
,
.first()
, any function really…
👍 1