Exception: Rex::TimeoutError

Inherits:
Interrupt
  • Object
show all
Includes:
Exception
Defined in:
lib/rex/exceptions.rb

Overview

This exception is raised when a timeout occurs.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "Operation timed out.") ⇒ TimeoutError

Returns a new instance of TimeoutError.



21
22
23
# File 'lib/rex/exceptions.rb', line 21

def initialize(msg = "Operation timed out.")
  super(msg)
end