Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unsolved_captcha_error.js « captcha « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e5c2a4d852d950ecfab3dc237c9c8846a0a9445 (plain)
1
2
3
4
5
6
7
8
9
10
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;