UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

10 lines (9 loc) 195 B
"use strict"; class OAuth2Exception extends Error { constructor(message, code = null) { super(message); this.code = code; } } exports.OAuth2Exception = OAuth2Exception; ;