Exception: Vagrant::Util::SubprocessPatched::TimeoutExceeded

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vagrant-reflect/patched/subprocess.rb

Overview

An error which occurs when the process doesn’t end within the given timeout.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pid) ⇒ TimeoutExceeded

Returns a new instance of TimeoutExceeded.



247
248
249
250
# File 'lib/vagrant-reflect/patched/subprocess.rb', line 247

def initialize(pid)
  super()
  @pid = pid
end

Instance Attribute Details

#pidObject (readonly)

Returns the value of attribute pid.



245
246
247
# File 'lib/vagrant-reflect/patched/subprocess.rb', line 245

def pid
  @pid
end