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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/exceptions.rb')
-rw-r--r--lib/gitlab/github_import/exceptions.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/gitlab/github_import/exceptions.rb b/lib/gitlab/github_import/exceptions.rb
new file mode 100644
index 00000000000..3a36b64a11b
--- /dev/null
+++ b/lib/gitlab/github_import/exceptions.rb
@@ -0,0 +1,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