Sha256: 3f9bcbdcdd8e4d875f3bd89e7e29c3181a1202d6f35757b6d9649e6f6e621e13

Contents?: true

Size: 247 Bytes

Versions: 7

Compression:

Stored size: 247 Bytes

Contents

module Dry
  module Core
    class InvalidClassAttributeValue < StandardError
      def initialize(name, value)
        super(
          "Value #{value.inspect} is invalid for class attribute #{name.inspect}"
        )
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dry-core-0.4.7 lib/dry/core/errors.rb
dry-core-0.4.6 lib/dry/core/errors.rb
dry-core-0.4.5 lib/dry/core/errors.rb
dry-core-0.4.4 lib/dry/core/errors.rb
dry-core-0.4.3 lib/dry/core/errors.rb
dry-core-0.4.2 lib/dry/core/errors.rb
dry-core-0.4.1 lib/dry/core/errors.rb