bling-erp-api
Version:
Pacote de integração com a API do Bling ERP
14 lines • 423 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlingApiException = void 0;
class BlingApiException extends Error {
constructor(response) {
super(response.error.description);
this.rawResponse = response;
}
get response() {
return this.rawResponse;
}
}
exports.BlingApiException = BlingApiException;
//# sourceMappingURL=bling-api.exception.js.map
;