summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/expression.rb
blob: f57df7c56377f41efa5683446bf909240dd2edd6 (plain)
1
2
3
4
5
6
7
8
9
10
module Gitlab
  module Ci
    module Pipeline
      module Expression
        ExpressionError = Class.new(StandardError)
        RuntimeError = Class.new(ExpressionError)
      end
    end
  end
end