public void execute() throws Exception {
   payload.setExecuted(true);
   if (!payload.isExecuteCauseException()) {
     payload.setExecutedSuccessfully(true);
   } else {
     throw new Exception();
   }
 }