Exception: Feedbook::Errors::UnsupportedNotifierError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/feedbook/errors/unsupported_notifier_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notifier, message) ⇒ UnsupportedNotifierError

Returns a new instance of UnsupportedNotifierError.



6
7
8
9
# File 'lib/feedbook/errors/unsupported_notifier_error.rb', line 6

def initialize(notifier, message)
  @notifier = notifier
  super(message)
end

Instance Attribute Details

#notifierObject (readonly)

Returns the value of attribute notifier.



4
5
6
# File 'lib/feedbook/errors/unsupported_notifier_error.rb', line 4

def notifier
  @notifier
end