private Map completeRuntimeTask()

in ddm-bpm-rest/src/main/java/com/epam/digital/data/platform/bpms/rest/service/UserTaskService.java [246:256]


  private Map<String, VariableValueDto> completeRuntimeTask(String id, CompleteTaskDto dto) {
    try {
      return taskRuntimeService.completeTask(id, dto);
    } catch (RestException e) {
      String errorMessage = String.format("Cannot complete task %s: %s", id, e.getMessage());
      throw new InvalidRequestException(e.getStatus(), e, errorMessage);
    } catch (ProcessEngineException e) {
      String errorMessage = String.format("Cannot complete task %s: %s", id, e.getMessage());
      throw new RestException(Status.INTERNAL_SERVER_ERROR, e, errorMessage);
    }
  }