dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 483 B
JavaScript
;
const apiError_1 = require("./apiError");
class CustomFieldError extends apiError_1.ApiError {
constructor(reason = null, fieldPath = null, trigger = null, errorString = null) {
super(fieldPath, trigger, errorString);
this.reason = reason;
this.fieldPath = fieldPath;
this.trigger = trigger;
this.errorString = errorString;
}
}
CustomFieldError.XSI_TYPE = "CustomFieldError";
exports.CustomFieldError = CustomFieldError;