summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/filtered_search/services/recent_searches_service_error.js
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;