summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/errors.rb
blob: f8c7ec24be1c06c55255939400f949f1abe0f1bd (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module Graphql
    module Errors
      BaseError = Class.new(GraphQL::ExecutionError)
      ArgumentError = Class.new(BaseError)
      ResourceNotAvailable = Class.new(BaseError)
    end
  end
end