Sha256: 36645a2232f0616b86fa6198e4649f1bcd624779ed9474f34fb82fba905b1c9b
Contents?: true
Size: 276 Bytes
Versions: 45
Compression:
Stored size: 276 Bytes
Contents
# frozen_string_literal: true module DnsMock module Error PortInUse = ::Class.new(::RuntimeError) do def initialize(hostname, port) super("Impossible to bind UDP DNS mock server on #{hostname}:#{port}. Address already in use") end end end end
Version data entries
45 entries across 45 versions & 1 rubygems