Exception: Timeout::Error
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Timeout::Error
- Defined in:
- lib/timeout.rb
Overview
Raised by Timeout.timeout when the block times out.
Class Method Summary collapse
-
.handle_timeout(message) ⇒ Object
:nodoc:.
Class Method Details
.handle_timeout(message) ⇒ Object
:nodoc:
34 35 36 37 38 39 40 41 42 43 |
# File 'lib/timeout.rb', line 34 def self.handle_timeout() # :nodoc: exc = ExitException.new() begin yield exc rescue ExitException => e raise new() if exc.equal?(e) raise end end |