class ActiveFedora::UnknownAttributeError

Raised when attempting to access an attribute that has not been defined

def initialize(record, attribute, klass = nil)

def initialize(record, attribute, klass = nil)
  @record = record
  @attribute = attribute
  super("unknown attribute '#{attribute}' for #{klass || @record.class}.")
end