@marxlnfcs/wildduck-api
Version:
Provides a client to interact with the wildduck api
11 lines (10 loc) • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WildduckUnprocessableEntityException = void 0;
const http_exception_1 = require("./http.exception");
class WildduckUnprocessableEntityException extends http_exception_1.WildduckException {
constructor(url, error, stack) {
super(url, 422, 'The input to the operation was not valid', error, stack);
}
}
exports.WildduckUnprocessableEntityException = WildduckUnprocessableEntityException;