public void run() {
   try {
     excecute();
     AsyncManager.getInstance().submitCompletedTask(this);
   } catch (Exception e) {
     Movecraft.getInstance()
         .getLogger()
         .log(
             Level.SEVERE,
             String.format(
                 I18nSupport.getInternationalisedString(
                     "Internal - Error - Proccessor thread encountered an error")));
     e.printStackTrace();
   }
 }