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

exceptions.rb « github_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a36b64a11b3376f917c01c63acde7596866bdb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Exceptions
      # Sometimes it's not clear which of not implemented interfaces  caused this error.
      # We need custom exception to be able to add text that gives extra context.
      NotImplementedError = Class.new(StandardError)
    end
  end
end