gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
15 lines • 600 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const googleAdsError_1 = require("../common/googleAdsError");
// Error indicating that a DFP report download request failed
class DfpReportError extends googleAdsError_1.GoogleAdsError {
// Initializes a DfpReportError
constructor(
// The ID of the report job which failed
reportJobId) {
super(`DFP report job failed. The ID of the failed report is: ${reportJobId}`);
this.reportJobId = reportJobId;
}
}
exports.DfpReportError = DfpReportError;
//# sourceMappingURL=dfpReportError.js.map