Files
gitlab-ce/lib/gitlab/github_import/exceptions.rb
2025-07-08 15:11:55 +00:00

16 lines
432 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)
InvalidURLError = Class.new(StandardError)
end
end
end