UNPKG

unleash-server

Version:

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

9 lines 279 B
import { UnleashError } from './unleash-error.js'; class BadGatewayError extends UnleashError { constructor(message = 'Bad Gateway') { super(message); this.statusCode = 502; } } export default BadGatewayError; //# sourceMappingURL=bad-gateway-error.js.map