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

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

module Gitlab
  module Changelog
    # An error raised when a changelog couldn't be generated.
    Error = Class.new(StandardError)
  end
end