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

recent_searches_service_error.js « services « filtered_search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8c2c6d79c6afe36df698cbbb575e75417e6272d (plain)
1
2
3
4
5
6
7
8
9
10
import { __ } from '~/locale';

class RecentSearchesServiceError extends Error {
  constructor(message) {
    super(message || __('Recent Searches Service is unavailable'));
    this.name = 'RecentSearchesServiceError';
  }
}

export default RecentSearchesServiceError;