Exception: Async::Container::Restart

Inherits:
SignalException
  • Object
show all
Defined in:
lib/async/container/error.rb

Overview

Similar to Interrupt, but represents ‘SIGHUP`.

Constant Summary collapse

SIGHUP =
Signal.list["HUP"]

Instance Method Summary collapse

Constructor Details

#initializeRestart

Create a new restart error.



39
40
41
# File 'lib/async/container/error.rb', line 39

def initialize
	super(SIGHUP)
end