summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilbert Roulot <groulot@gitlab.com>2018-11-29 19:02:45 +0100
committerGilbert Roulot <groulot@gitlab.com>2018-12-03 09:28:25 +0100
commit32ab3bf9c9772f52da0128f09f2fdb3fef58f789 (patch)
tree644630d8f4688f02633f0f9d7586ae77b6826c21
parent6e27b20afeb8e2058f12bf93cf23ce8d67f887cf (diff)
downloadgitlab-ce-7788_parse_license_management_reports_in_be-ce.tar.gz
-rw-r--r--lib/gitlab/ci/parsers.rb1
-rw-r--r--lib/gitlab/ci/parsers/parser_error.rb9
2 files changed, 9 insertions, 1 deletions
diff --git a/lib/gitlab/ci/parsers.rb b/lib/gitlab/ci/parsers.rb
index 8d44a53a459..eb63e6c8363 100644
--- a/lib/gitlab/ci/parsers.rb
+++ b/lib/gitlab/ci/parsers.rb
@@ -3,7 +3,6 @@
module Gitlab
module Ci
module Parsers
- ParserError = Class.new(StandardError)
ParserNotFoundError = Class.new(ParserError)
def self.parsers
diff --git a/lib/gitlab/ci/parsers/parser_error.rb b/lib/gitlab/ci/parsers/parser_error.rb
new file mode 100644
index 00000000000..ef327737cdb
--- /dev/null
+++ b/lib/gitlab/ci/parsers/parser_error.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Parsers
+ ParserError = Class.new(StandardError)
+ end
+ end
+end