2018-12-23 12:14:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
module WrapsGitalyErrors
|
|
|
|
def wrapped_gitaly_errors(&block)
|
|
|
|
yield block
|
|
|
|
rescue GRPC::NotFound => e
|
|
|
|
raise Gitlab::Git::Repository::NoRepository.new(e)
|
|
|
|
rescue GRPC::InvalidArgument => e
|
|
|
|
raise ArgumentError.new(e)
|
|
|
|
rescue GRPC::BadStatus => e
|
|
|
|
raise Gitlab::Git::CommandError.new(e)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|