Exception: Apia::InvalidScalarValueError
- Inherits:
-
RuntimeError
- Object
- StandardError
- StandardError
- RuntimeError
- Apia::InvalidScalarValueError
- Defined in:
- lib/apia/errors/invalid_scalar_value_error.rb
Instance Attribute Summary collapse
-
#given_value ⇒ Object
readonly
Returns the value of attribute given_value.
-
#scalar ⇒ Object
readonly
Returns the value of attribute scalar.
Instance Method Summary collapse
-
#initialize(scalar, given_value) ⇒ InvalidScalarValueError
constructor
A new instance of InvalidScalarValueError.
- #to_s ⇒ Object
Methods inherited from RuntimeError
Constructor Details
#initialize(scalar, given_value) ⇒ InvalidScalarValueError
Returns a new instance of InvalidScalarValueError.
11 12 13 14 |
# File 'lib/apia/errors/invalid_scalar_value_error.rb', line 11 def initialize(scalar, given_value) @scalar = scalar @given_value = given_value end |
Instance Attribute Details
#given_value ⇒ Object (readonly)
Returns the value of attribute given_value.
9 10 11 |
# File 'lib/apia/errors/invalid_scalar_value_error.rb', line 9 def given_value @given_value end |
#scalar ⇒ Object (readonly)
Returns the value of attribute scalar.
8 9 10 |
# File 'lib/apia/errors/invalid_scalar_value_error.rb', line 8 def scalar @scalar end |
Instance Method Details
#to_s ⇒ Object
16 17 18 |
# File 'lib/apia/errors/invalid_scalar_value_error.rb', line 16 def to_s "Invalid value for `#{scalar.name}` (got: #{@given_value.inspect} (#{@given_value.class}))" end |