Exception: GrafanaReporter::FolderDoesNotExistError
- Inherits:
-
ConfigurationError
- Object
- StandardError
- GrafanaReporterError
- ConfigurationError
- GrafanaReporter::FolderDoesNotExistError
- Defined in:
- lib/grafana_reporter/errors.rb
Overview
Thrown, if a configured path does not exist.
Instance Method Summary collapse
-
#initialize(folder, config_item) ⇒ FolderDoesNotExistError
constructor
A new instance of FolderDoesNotExistError.
Constructor Details
#initialize(folder, config_item) ⇒ FolderDoesNotExistError
Returns a new instance of FolderDoesNotExistError.
59 60 61 |
# File 'lib/grafana_reporter/errors.rb', line 59 def initialize(folder, config_item) super("#{config_item} '#{folder}' does not exist.") end |