Sha256: 3f63778b12abfe2b6a3341139a253be3340ce0dfee9f4bf34c35b3f92762368e

Contents?: true

Size: 387 Bytes

Versions: 1

Compression:

Stored size: 387 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Utils
    module Array
      module Errors
        class NonIntegerIndex < ::ConvenientService::Error
          def initialize(index:)
            message = <<~TEXT
              Index `#{index.inspect}` is NOT an integer.
            TEXT

            super(message)
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/utils/array/errors.rb