Sha256: 8c412b1ffba4ad3aa1eb54d888ada96510616c7742006220af9712d13c635db0

Contents?: true

Size: 343 Bytes

Versions: 3

Compression:

Stored size: 343 Bytes

Contents

# frozen_string_literal: true

module OnStrum
  module Healthcheck
    module Error
      module Configuration
        NotConfigured = ::Class.new(::RuntimeError) do
          def initialize
            super('The configuration is empty. Please use OnStrum::Healthcheck.configure before')
          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_configured.rb
on_strum-healthcheck-0.2.0 lib/on_strum/healthcheck/error/configuration/not_configured.rb
on_strum-healthcheck-0.1.0 lib/on_strum/healthcheck/error/configuration/not_configured.rb