Welcome to mirror list, hosted at ThFree Co, Russian Federation.

standard_graphql_error.rb « graphql « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8364c232af2afb22835d67a45a66c8fbb0f24de4 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

# rubocop:disable Cop/CustomErrorClass

module Gitlab
  module Graphql
    class StandardGraphqlError < StandardError
    end
  end
end