class ACH::Component::UnknownAttributeError

Exception raised on attempt to assign a value to nonexistent field.

Public Class Methods

new(field, obj) click to toggle source

Initialize error with field and component.

@param [String] field @param [ACH::Component] obj

Calls superclass method
# File lib/ach/component.rb, line 26
def initialize(field, obj)
  super "Unrecognized attribute '#{field}' for #{obj}"
end