Exception: GQL::Errors::CallNotFound
- Inherits:
-
NotFoundError
- Object
- RuntimeError
- GQL::Error
- NotFoundError
- GQL::Errors::CallNotFound
- Defined in:
- lib/gql/errors.rb
Instance Attribute Summary
Attributes inherited from GQL::Error
Instance Method Summary collapse
-
#initialize(id, field_class) ⇒ CallNotFound
constructor
A new instance of CallNotFound.
Methods inherited from GQL::Error
Constructor Details
#initialize(id, field_class) ⇒ CallNotFound
Returns a new instance of CallNotFound.
41 42 43 44 45 |
# File 'lib/gql/errors.rb', line 41 def initialize(id, field_class) msg = (field_class, id, 'call', :calls) super(msg, 111, id) end |