Exception: Pagy::VariableError
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- Pagy::VariableError
- Defined in:
- lib/pagy/exceptions.rb
Overview
generic variable error
Direct Known Subclasses
Instance Attribute Summary collapse
-
#pagy ⇒ Object
readonly
Returns the value of attribute pagy.
Instance Method Summary collapse
-
#initialize(pagy) ⇒ VariableError
constructor
A new instance of VariableError.
- #value ⇒ Object
- #variable ⇒ Object
Constructor Details
#initialize(pagy) ⇒ VariableError
Returns a new instance of VariableError.
9 10 11 12 |
# File 'lib/pagy/exceptions.rb', line 9 def initialize(pagy) super @pagy = pagy end |
Instance Attribute Details
#pagy ⇒ Object (readonly)
Returns the value of attribute pagy.
7 8 9 |
# File 'lib/pagy/exceptions.rb', line 7 def pagy @pagy end |
Instance Method Details
#value ⇒ Object
19 |
# File 'lib/pagy/exceptions.rb', line 19 def value = pagy.vars[variable] |
#variable ⇒ Object
14 15 16 17 |
# File 'lib/pagy/exceptions.rb', line 14 def variable =~ /expected :(\w+)/ Regexp.last_match(1)&.to_sym end |