Exception: TimeoutException
- Inherits:
-
SteamCondenserException
- Object
- StandardError
- SteamCondenserException
- TimeoutException
- Defined in:
- lib/exceptions/timeout_exception.rb
Overview
Note:
SteamSocket.timeout= allows to set a custom timeout for socket operations
This exception class indicates that an operation could not be finished within a reasonable amount of time
This usually indicates that a server could not be contacted because of network problems.
Instance Method Summary collapse
-
#initialize ⇒ TimeoutException
constructor
Creates a new ‘TimeoutException` instance.
Constructor Details
#initialize ⇒ TimeoutException
Creates a new ‘TimeoutException` instance
20 21 22 |
# File 'lib/exceptions/timeout_exception.rb', line 20 def initialize super 'The operation timed out.' end |