class GrafanaReporter::MalformedAttributeContentError

Thrown, if a configured parameter is malformed.

Public Class Methods

new(message, attribute, content) click to toggle source
# File lib/grafana_reporter/errors.rb, line 84
def initialize(message, attribute, content)
  super("The content '#{content}' in attribute '#{attribute}' is malformed: #{message}")
end