unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
9 lines • 332 B
JavaScript
import { UnleashError } from './unleash-error.js';
class ArchivedFeatureError extends UnleashError {
constructor(message = 'Cannot perform this operation on archived features') {
super(message);
this.statusCode = 400;
}
}
export default ArchivedFeatureError;
//# sourceMappingURL=archivedfeature-error.js.map