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

error.rb « template_parser « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dcde44874921f835063f9172669f5b0a653d813 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Gitlab
  module TemplateParser
    # An error raised when a template couldn't be rendered.
    Error = Class.new(StandardError)
  end
end