class UNotifier::NotificationNotFoundError
Attributes
key[R]
Public Class Methods
new(key)
click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 39 def initialize(key) @key = key message = "Notification with key '#{@key}' not found" super(message) end