class GrafanaReporter::MalformedAttributeContentError
Thrown, if a configured parameter is malformed.
Public Class Methods
new(message, attribute, content)
click to toggle source
Calls superclass method
GrafanaReporter::GrafanaReporterError::new
# File lib/grafana_reporter/errors.rb, line 84 def initialize(message, attribute, content) super("The content '#{content}' in attribute '#{attribute}' is malformed: #{message}") end