Exception: Concur::EventMachineError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/futures/event_machine_future.rb

Instance Method Summary collapse

Constructor Details

#initialize(callbackable) ⇒ EventMachineError

Returns a new instance of EventMachineError.



7
8
9
10
11
# File 'lib/futures/event_machine_future.rb', line 7

def initialize(callbackable)
  super("Error in #{callbackable.class.name}")
  @callbackable = callbackable

end