if ( provider == null ) {
throw new MojoExecutionException( "Unable to determine provider to use" );
}
}
Instrumenter instrumenter = resolveInstrumenter( provider, new LoggingBridge() );
try {
instrumenter.execute( collectFilesToProcess() );
}
catch ( Throwable t ) {
throw new MojoExecutionException( "Error executing instrumentation", t );
}
}