Exception: Vapir::Exception::TimeOutException
- Inherits:
-
VapirException
- Object
- StandardError
- VapirException
- Vapir::Exception::TimeOutException
- Defined in:
- lib/vapir-common/exceptions.rb
Overview
This exception is raised if a timeout is exceeded
Instance Attribute Summary collapse
-
#duration ⇒ Object
readonly
Returns the value of attribute duration.
-
#timeout ⇒ Object
readonly
Returns the value of attribute timeout.
Instance Method Summary collapse
-
#initialize(duration, timeout) ⇒ TimeOutException
constructor
A new instance of TimeOutException.
Constructor Details
#initialize(duration, timeout) ⇒ TimeOutException
Returns a new instance of TimeOutException.
50 51 52 |
# File 'lib/vapir-common/exceptions.rb', line 50 def initialize(duration, timeout) @duration, @timeout = duration, timeout end |
Instance Attribute Details
#duration ⇒ Object (readonly)
Returns the value of attribute duration.
53 54 55 |
# File 'lib/vapir-common/exceptions.rb', line 53 def duration @duration end |
#timeout ⇒ Object (readonly)
Returns the value of attribute timeout.
53 54 55 |
# File 'lib/vapir-common/exceptions.rb', line 53 def timeout @timeout end |