zabbix-client
Version:
Zabbix Javascript API Client
12 lines (11 loc) • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ZabbixResponseException extends Error {
constructor(error, config) {
super(error.data);
this.reason = error.message;
this.code = error.code;
this.config = config;
}
}
exports.ZabbixResponseException = ZabbixResponseException;