UNPKG

@marxlnfcs/wildduck-api

Version:

Provides a client to interact with the wildduck api

11 lines (10 loc) 431 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WildduckNotFoundException = void 0; const http_exception_1 = require("./http.exception"); class WildduckNotFoundException extends http_exception_1.WildduckException { constructor(url, error, stack) { super(url, 404, 'Requested item was not found', error, stack); } } exports.WildduckNotFoundException = WildduckNotFoundException;