File: error.rb

package info (click to toggle)
ruby-graphql-client 0.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: ruby: 1,878; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
module GraphQL
  class Client
    # Public: Abstract base class for all errors raised by GraphQL::Client.
    class Error < StandardError
    end

    class InvariantError < Error
    end

    class ImplicitlyFetchedFieldError < NoMethodError
    end

    class UnfetchedFieldError < NoMethodError
    end

    class UnimplementedFieldError < NoMethodError
    end
  end
end