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
Class Method Details
.handle_timeout(message) ⇒ Object
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/timeout.rb', line 37 def self.handle_timeout() exc = ExitException.new() begin yield exc rescue ExitException => e raise new() if exc.equal?(e) raise end end |