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