unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
20 lines • 572 B
JavaScript
import { UnleashError } from './unleash-error.js';
class OwaspValidationError extends UnleashError {
constructor(testResult) {
const details = {
validationErrors: testResult.errors,
message: testResult.errors[0],
};
super(testResult.errors[0]);
this.statusCode = 400;
this.details = [details];
}
toJSON() {
return {
...super.toJSON(),
details: this.details,
};
}
}
export default OwaspValidationError;
//# sourceMappingURL=owasp-validation-error.js.map