Exception: GQL::Errors::VariableNotFound
- Inherits:
-
NotFoundError
- Object
- RuntimeError
- GQL::Error
- NotFoundError
- GQL::Errors::VariableNotFound
- Defined in:
- lib/gql/errors.rb
Instance Attribute Summary
Attributes inherited from GQL::Error
Instance Method Summary collapse
-
#initialize(id) ⇒ VariableNotFound
constructor
A new instance of VariableNotFound.
Methods inherited from GQL::Error
Constructor Details
#initialize(id) ⇒ VariableNotFound
Returns a new instance of VariableNotFound.
57 58 59 60 61 |
# File 'lib/gql/errors.rb', line 57 def initialize(id) msg = "The variable named `<#{id}>' has no value." super(msg, 113, id) end |