summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/captcha/unsolved_captcha_error.js
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;