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

11 lines
167 B
Ruby

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