unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
13 lines • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class NotFoundError extends Error {
constructor(message) {
super();
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.message = message;
}
}
exports.default = NotFoundError;
module.exports = NotFoundError;
//# sourceMappingURL=notfound-error.js.map