mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
14 lines
382 B
Ruby
14 lines
382 B
Ruby
# 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)
|
|
|
|
NoteableNotFound = Class.new(StandardError)
|
|
end
|
|
end
|
|
end
|