gitlab-org--gitlab-foss/app/assets/javascripts/captcha/unsolved_captcha_error.js

11 lines
259 B
JavaScript

import { __ } from '~/locale';
class UnsolvedCaptchaError extends Error {
constructor(message) {
super(message || __('You must solve the CAPTCHA in order to submit'));
this.name = 'UnsolvedCaptchaError';
}
}
export default UnsolvedCaptchaError;