Sha256: c2062dbe38a512218ad0af13ca7479fd79f45ced0fa5c4cccde01c8b6d3f4884
Contents?: true
Size: 366 Bytes
Versions: 14
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Utils module Array module Errors class NonIntegerIndex < 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
14 entries across 14 versions & 1 rubygems