Exception: GrafanaReporter::MissingTemplateError

Inherits:
ConfigurationError show all
Defined in:
lib/grafana_reporter/errors.rb

Overview

Thrown if a non existing template has been specified.

Instance Method Summary collapse

Constructor Details

#initialize(template) ⇒ MissingTemplateError

Returns a new instance of MissingTemplateError.



52
53
54
# File 'lib/grafana_reporter/errors.rb', line 52

def initialize(template)
  super("Accessing report template file '#{template}' is not possible. Check if file exists and is accessible.")
end