@marxlnfcs/wildduck-api
Version:
Provides a client to interact with the wildduck api
11 lines (10 loc) • 484 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WildduckUnknownErrorException = void 0;
const http_exception_1 = require("./http.exception");
class WildduckUnknownErrorException extends http_exception_1.WildduckException {
constructor(url, error, stack) {
super(url, 900, 'Unknown error', error || { code: 'UnknownError', error: 'Unknown error' }, stack);
}
}
exports.WildduckUnknownErrorException = WildduckUnknownErrorException;