Exception: Gem::Timeout::Error

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/rubygems/vendor/timeout/lib/timeout.rb

Overview

Raised by Gem::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/rubygems/vendor/timeout/lib/timeout.rb', line 37

def self.handle_timeout(message)
  exc = ExitException.new(message)

  begin
    yield exc
  rescue ExitException => e
    raise new(message) if exc.equal?(e)
    raise
  end
end