UNPKG

unleash-server

Version:

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

9 lines 296 B
import { UnleashError } from './unleash-error.js'; class PasswordMismatch extends UnleashError { constructor(message = 'Wrong password, try again.') { super(message); this.statusCode = 401; } } export default PasswordMismatch; //# sourceMappingURL=password-mismatch.js.map