class GrafanaReporter::DatasourceRequestInternalError

Raised if some unhandled exception is raised during a datasource request execution.

Public Class Methods

new(datasource, message) click to toggle source
# File lib/grafana_reporter/errors.rb, line 21
def initialize(datasource, message)
  super("The datasource request to '#{datasource.name}' (#{datasource.class}) failed with "\
        "an internal error: #{message}")
end