Exception: GrafanaReporter::GrafanaReporterError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/grafana_reporter/errors.rb

Overview

General error of the reporter. All other errors will inherit from this class.

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ GrafanaReporterError

Returns a new instance of GrafanaReporterError.



6
7
8
# File 'lib/grafana_reporter/errors.rb', line 6

def initialize(message)
  super("GrafanaReporterError: #{message}")
end