class ContractedValue::Errors::InvalidAttributeValue

Public Class Methods

new(key, val) click to toggle source
Calls superclass method
# File lib/contracted_value/core.rb, line 62
      def initialize(key, val)
        super(
          <<~MSG
            Attribute :#{key} received invalid value:
            #{val.inspect}
          MSG
        )
      end