Sha256: 39bed7df934d9c535f6b91a622711f7aefe11f3e1f5a4e526b828979b24a787e

Contents?: true

Size: 357 Bytes

Versions: 3

Compression:

Stored size: 357 Bytes

Contents

# frozen_string_literal: true

module OnStrum
  module Healthcheck
    module Error
      module Configuration
        EnpointPattern = ::Class.new(::ArgumentError) do
          def initialize(arg_value, arg_name)
            super("#{arg_value} does not match a valid enpoint pattern for #{arg_name}")
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
on_strum-healthcheck-0.3.0 lib/on_strum/healthcheck/error/configuration/enpoint_pattern.rb
on_strum-healthcheck-0.2.0 lib/on_strum/healthcheck/error/configuration/enpoint_pattern.rb
on_strum-healthcheck-0.1.0 lib/on_strum/healthcheck/error/configuration/enpoint_pattern.rb