class GrafanaReporter::DatasourceNotSupportedError
Raised if a datasource shall be queried, which is not (yet) supported by the reporter
Public Class Methods
new(datasource, query)
click to toggle source
Calls superclass method
GrafanaReporter::GrafanaReporterError::new
# File lib/grafana_reporter/errors.rb, line 13 def initialize(datasource, query) super("The datasource '#{datasource.name}' is of type '#{datasource.type}' which is currently "\ "not supported for the query type '#{query}'.") end