gitlab-org--gitlab-foss/lib/gitlab/graphql.rb
Bob Van Landuyt c443133e77 Handle exceptions outside the GraphQL schema
This allows us to report JSON parse exceptions to clients and ignore
them in sentry.
2018-06-05 20:47:42 +02:00

5 lines
93 B
Ruby

module Gitlab
module Graphql
StandardGraphqlError = Class.new(StandardError)
end
end