UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

9 lines 302 B
import { UnleashError } from './unleash-error.js'; class NotFoundError extends UnleashError { constructor(message = 'The requested resource could not be found') { super(message); this.statusCode = 404; } } export default NotFoundError; //# sourceMappingURL=notfound-error.js.map