public static Status getErrorStatus(String error) {
   try {
     ErrorType errorType = EngineMessage.getErrorType(error);
     return getStatus(errorType);
   } catch (Exception e) {
     return null;
   }
 }