private ensureStreamIsOpen()

in lib/common/utils/reports/reportResponse.ts [46:52]


  private ensureStreamIsOpen(): void {
    if (this.response == null) {
      throw new AdsReportsException(
        "Cannot access a closed report response stream.",
      );
    }
  }