class Rasti::Model::UnexpectedAttributesError

Attributes

attributes[R]

Public Class Methods

new(attributes) click to toggle source
Calls superclass method
# File lib/rasti/model/errors.rb, line 19
def initialize(attributes)
  @attributes = attributes
  super "Unexpected attributes: #{attributes.join(', ')}"
end