Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expression.rb « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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