I have the following code snippet, which I analyze with ASM
try{
} catch (@TypeAnno7 RuntimeException re){
}
I can't find the right method that gets called for the Annotation. I thought MethodVisitor.visitTryCatchAnnotation would do the trick, but it doesn't get called.
So: what is the correct method used? And for what kind of code does the method mentioned get called?