mv.visitTryCatchBlock( l0, l1, ld, getInternalName( declaredException ) );
exceptionLabels.add( ld ); // Reuse this further down for the catch
}
Label lruntime = new Label();
mv.visitTryCatchBlock( l0, l1, lruntime, "java/lang/RuntimeException" );
Label lerror = new Label();
mv.visitTryCatchBlock( l0, l1, lerror, "java/lang/Throwable" );
mv.visitLabel( l0 );
mv.visitVarInsn( ALOAD, 0 );