public TrackviaApiException(final ApiErrorResponse apiErrorResponse) {
   super(apiErrorResponse.getMessage());
   this.apiErrorResponse = apiErrorResponse;
   this.cause = null;
 }
 public ApiError getApiError() {
   return apiErrorResponse.getApiError();
 }