dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 341 B
JavaScript
;
const applicationException_1 = require("./applicationException");
class ApiException extends applicationException_1.ApplicationException {
constructor(errors = null, message = null) {
super(message);
this.errors = errors;
}
}
ApiException.XSI_TYPE = "ApiException";
exports.ApiException = ApiException;