class GrafanaReporter::TimeRangeUnknownError
Thrown, if a configured time range is not supported by the reporter.
If this happens, most likely the reporter has to implement the new time range definition.
Public Class Methods
new(time_range)
click to toggle source
Calls superclass method
GrafanaReporter::GrafanaReporterError::new
# File lib/grafana_reporter/errors.rb, line 94 def initialize(time_range) super("The specified time range '#{time_range}' is unknown.") end