class Segmentor::Errors::NotificationError

NotificationError can be raised by a notification block to indicate that the notification should not be sent.

Attributes

target[R]

Public Class Methods

new(target) click to toggle source
Calls superclass method
# File lib/segmentor/errors/notification_error.rb, line 10
def initialize(target)
  @target = target
  super('Notification error')
end