private void undeployFailOnError(String file) {
   try {
     log.info("Undeploying : " + file);
     super.undeploy(file);
   } catch (Exception e) {
     fail("Failed to undeploy: " + file);
   }
 }