class UNotifier::AttributeMissingError

Attributes

attribute[R]
key[R]

Public Class Methods

new(key, attribute) click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 17
def initialize(key, attribute)
  @key = key
  @attribute = attribute
  message = "Missing '#{attribute}' attribute for notification '#{key}'"
  super(message)
end