summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/standard_graphql_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/graphql/standard_graphql_error.rb')
-rw-r--r--lib/gitlab/graphql/standard_graphql_error.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/gitlab/graphql/standard_graphql_error.rb b/lib/gitlab/graphql/standard_graphql_error.rb
new file mode 100644
index 00000000000..8364c232af2
--- /dev/null
+++ b/lib/gitlab/graphql/standard_graphql_error.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+# rubocop:disable Cop/CustomErrorClass
+
+module Gitlab
+ module Graphql
+ class StandardGraphqlError < StandardError
+ end
+ end
+end