gitlab-org--gitlab-foss/lib/gitlab/graphql/standard_graphql_error.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
167 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# rubocop:disable Cop/CustomErrorClass
module Gitlab
module Graphql
class StandardGraphqlError < StandardError
end
end
end