class UNotifier::UnknownTargetError

Attributes

key[R]
target[R]

Public Class Methods

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