constructor()

in lib/common/utils/reports/reportResponse.ts [13:19]


  constructor(response: AxiosResponse) {
    if (response == null) {
      throw new ArgumentNullException("Response cannot be null.");
    }

    this.response = response;
  }