Exception: GQL::Errors::FieldNotFound
- Inherits:
-
NotFoundError
- Object
- RuntimeError
- GQL::Error
- NotFoundError
- GQL::Errors::FieldNotFound
- Defined in:
- lib/gql/errors.rb
Instance Attribute Summary
Attributes inherited from GQL::Error
Instance Method Summary collapse
-
#initialize(id, field_class) ⇒ FieldNotFound
constructor
A new instance of FieldNotFound.
Methods inherited from GQL::Error
Constructor Details
#initialize(id, field_class) ⇒ FieldNotFound
Returns a new instance of FieldNotFound.
49 50 51 52 53 |
# File 'lib/gql/errors.rb', line 49 def initialize(id, field_class) msg = (field_class, id, 'field', :fields) super(msg, 112, id) end |