I know that you can do ctrl-shift-g to find all calls to a particular method.
My question is: Is there any more advanced search or way to find all calls to a particular method, and in THOSE methods, find the ones that catch a particular exception?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re familiar with regex, you could try to use the regular expression option in the File Search dialog.
e.g. the search pattern
would find all calls to the alpha() function that were caught by IllegalStateException.