11 lines
167 B
Ruby
11 lines
167 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# rubocop:disable Cop/CustomErrorClass
|
||
|
|
||
|
module Gitlab
|
||
|
module Graphql
|
||
|
class StandardGraphqlError < StandardError
|
||
|
end
|
||
|
end
|
||
|
end
|