class GrafanaReporter::GrafanaReporterError

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

Public Class Methods

new(message) click to toggle source
Calls superclass method
# File lib/grafana_reporter/errors.rb, line 6
def initialize(message)
  super("GrafanaReporterError: #{message}")
end