class ContractedValue::Errors::MissingAttributeInput

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/contracted_value/core.rb, line 52
      def initialize(key)
        super(
          <<~MSG
            Attribute :#{key} missing from input
          MSG
        )
      end