Exception: Replay::InvalidSubscriberError

Inherits:
ReplayError
  • Object
show all
Defined in:
lib/replay.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ InvalidSubscriberError

Returns a new instance of InvalidSubscriberError.



24
25
26
27
# File 'lib/replay.rb', line 24

def initialize(*args)
  obj = args.shift
  super( "Subscriber#{obj.to_s} does not implement #published(stream, event)", *args)
end