// old code:
// scope.problemReporter().unhandledException(raisedException, location);
// new code:
ProblemReporter problemReporter = scope.referenceCompilationUnit().problemReporter;
problemReporter.referenceContext = scope.referenceContext();
problemReporter.unhandledException(raisedException, location);
// AspectJ Extension End
}
public void checkExceptionHandlers(TypeBinding[] raisedExceptions, ASTNode location, FlowInfo flowInfo, BlockScope scope) {
// check that all the argument exception types are handled