[ruby/timeout] [DOC] Missing documents

https://github.com/ruby/timeout/commit/301ad4cfdc
This commit is contained in:
Nobuyoshi Nakada 2023-12-18 14:02:15 +09:00 коммит произвёл Hiroshi SHIBATA
Родитель 24e0f6fcab
Коммит bb6cf76362
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -23,18 +23,19 @@
# Copyright:: (C) 2000 Information-technology Promotion Agency, Japan
module Timeout
# The version
VERSION = "0.4.1"
# Internal error raised to when a timeout is triggered.
class ExitException < Exception
def exception(*)
def exception(*) # :nodoc:
self
end
end
# Raised by Timeout.timeout when the block times out.
class Error < RuntimeError
def self.handle_timeout(message)
def self.handle_timeout(message) # :nodoc:
exc = ExitException.new(message)
begin