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

conduit.rb « phabricator_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c64d7373899bf916bfd728a58c8c3b56ec64967 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
module Gitlab
  module PhabricatorImport
    module Conduit
      ApiError = Class.new(Gitlab::PhabricatorImport::BaseError)
      ResponseError = Class.new(ApiError)
    end
  end
end