10 lines
215 B
Ruby
10 lines
215 B
Ruby
|
# frozen_string_literal: true
|
||
|
module Gitlab
|
||
|
module PhabricatorImport
|
||
|
module Conduit
|
||
|
ApiError = Class.new(Gitlab::PhabricatorImport::BaseError)
|
||
|
ResponseError = Class.new(ApiError)
|
||
|
end
|
||
|
end
|
||
|
end
|