Exception: Pursuit::AttributeNotFound

Inherits:
QueryError show all
Defined in:
lib/pursuit/attribute_not_found.rb

Overview

Raised when an attribute cannot be found.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attribute) ⇒ AttributeNotFound

Creates a new error instance.

Parameters:

  • attribute (Symbol)

    The name of the attribute which could not be found.


15
16
17
18
# File 'lib/pursuit/attribute_not_found.rb', line 15

def initialize(attribute)
  @attribute = attribute
  super("'#{attribute}' is not a valid attribute")
end

Instance Attribute Details

#attributeSymbol (readonly)

Returns The name of the attribute which could not be found.

Returns:

  • (Symbol)

    The name of the attribute which could not be found.


9
10
11
# File 'lib/pursuit/attribute_not_found.rb', line 9

def attribute
  @attribute
end