Exception: Replay::InvalidStorageError

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ InvalidStorageError

Returns a new instance of InvalidStorageError.



17
18
19
20
# File 'lib/replay.rb', line 17

def initialize(*args)
  klass = args.shift
  super( "Storage #{klass.to_s} does not implement #event_stream(stream, event)", *args)
end