class GrafanaReporter::MissingMandatoryAttributeError

Thrown, if a mandatory attribute is not set.

Public Class Methods

new(attribute) click to toggle source
# File lib/grafana_reporter/errors.rb, line 101
def initialize(attribute)
  super("Missing mandatory attribute '#{attribute}'.")
end