Sha256: 2318a1bda1e19863af49b435e74856d0edeaf2025d10672415ec76f4934ba3c2
Contents?: true
Size: 347 Bytes
Versions: 12
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true module GrpcMock class NetConnectNotAllowedError < StandardError def initialize(sigunature) super("Real gRPC connections are disabled. #{sigunature} is requested") end end class NoResponseError < StandardError def initialize(msg) super("There is no response: #{msg}") end end end
Version data entries
12 entries across 12 versions & 3 rubygems