summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/parsers/parser_error.rb
blob: ef327737cdbf31f036980450e78afcb4e89a4083 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  module Ci
    module Parsers
      ParserError = Class.new(StandardError)
    end
  end
end