mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-07 18:09:16 +00:00
A follow-up to e23c31195b097223f030800614b55d09bf54d086 Fixes errors like: ``` NameError: uninitialized constant DiscourseDataExplorer::ValidationError # ./plugins/discourse-data-explorer/spec/lib/parameter_spec.rb:15:in `block (3 levels) in <main>' ```
7 lines
112 B
Ruby
7 lines
112 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscourseDataExplorer
|
|
class ValidationError < StandardError
|
|
end
|
|
end
|