Sha256: 77e20b5a363d500ef86b7925b31cb89d7a639a95ec7bdfa76cba7eb8650cf8de
Contents?: true
Size: 374 Bytes
Versions: 1
Compression:
Stored size: 374 Bytes
Contents
# frozen_string_literal: true module HealthcheckEndpoint 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
healthcheck_endpoint-1.0.0 | lib/healthcheck_endpoint/error/configuration/not_callable_service.rb |