Exception: Pursuit::AttributeNotFound
- Inherits:
-
QueryError
- Object
- StandardError
- Error
- QueryError
- Pursuit::AttributeNotFound
- Defined in:
- lib/pursuit/attribute_not_found.rb
Overview
Raised when an attribute cannot be found.
Instance Attribute Summary collapse
-
#attribute ⇒ Symbol
readonly
The name of the attribute which could not be found.
Instance Method Summary collapse
-
#initialize(attribute) ⇒ AttributeNotFound
constructor
Creates a new error instance.
Constructor Details
#initialize(attribute) ⇒ AttributeNotFound
Creates a new error instance.
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
#attribute ⇒ Symbol (readonly)
Returns 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 |