Sha256: 9ae8aa0d7f54355ef30b5ad41a4cba0d957e710547e9fc9264f47d7a74a416d9

Contents?: true

Size: 407 Bytes

Versions: 3

Compression:

Stored size: 407 Bytes

Contents

# frozen_string_literal: true

module OnStrum
  module Healthcheck
    module Error
      module Configuration
        NotCallableService = ::Class.new(::ArgumentError) do
          def initialize(service_name, services_setter)
            super("Service #{service_name} is not callable. All values for #{services_setter} should be a callable objects")
          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/not_callable_service.rb
on_strum-healthcheck-0.2.0 lib/on_strum/healthcheck/error/configuration/not_callable_service.rb
on_strum-healthcheck-0.1.0 lib/on_strum/healthcheck/error/configuration/not_callable_service.rb