Exception: FormulaValidationError

Inherits:
StandardError
  • Object
show all
Defined in:
exceptions.rb

Overview

Raised when an invalid attribute is used in a formula.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(formula, attr, value) ⇒ FormulaValidationError

Returns a new instance of FormulaValidationError.



68
69
70
71
72
# File 'exceptions.rb', line 68

def initialize(formula, attr, value)
  @attr = attr
  @formula = formula
  super "invalid attribute for formula '#{formula}': #{attr} (#{value.inspect})"
end

Instance Attribute Details

#attrObject (readonly)

Returns the value of attribute attr.



66
67
68
# File 'exceptions.rb', line 66

def attr
  @attr
end

#formulaObject (readonly)

Returns the value of attribute formula.



66
67
68
# File 'exceptions.rb', line 66

def formula
  @formula
end