コード例 #1
0
 /** Clean up. */
 public void cleanup() throws BenchmarkException {
   try {
     scenario.cleanup();
   } catch (Exception e) {
     String msg = "Scenario cleanup() method call failed: " + scenario.getClass();
     logger.debug(msg, e);
     throw new BenchmarkException(msg, e);
   }
 }