super(resolution);
try {
InstrumentorChain chain = new InstrumentorChain();
ChainInstrumentor dispatcher = new MethodDispatcherInstrumentor();
CatchInstrumentor selectCatchBlocks = new CatchInstrumentor();
ChainInstrumentor selectHead = new HeadInstrumentor();
ChainInstrumentor callMethod =
new MethodCallInstrumentor(new CatchHook(this));
selectCatchBlocks.setResolutions(getResolutions());
chain.add(dispatcher);
chain.add(selectCatchBlocks);
chain.add(selectHead);
chain.add(callMethod);