Exception: ActionView::Helpers::NumberHelper::InvalidNumberError

Inherits:
StandardError
  • Object
show all
Defined in:
actionview/lib/action_view/helpers/number_helper.rb

Overview

Raised when argument number param given to the helpers is invalid and the option :raise is set to true.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(number) ⇒ InvalidNumberError

Returns a new instance of InvalidNumberError.



23
24
25
# File 'actionview/lib/action_view/helpers/number_helper.rb', line 23

def initialize(number)
  @number = number
end

Instance Attribute Details

#numberObject

Returns the value of attribute number



22
23
24
# File 'actionview/lib/action_view/helpers/number_helper.rb', line 22

def number
  @number
end