Exception: Vagrant::Util::Subprocess::TimeoutExceeded

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vagrant/util/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.



291
292
293
294
# File 'lib/vagrant/util/subprocess.rb', line 291

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

Instance Attribute Details

#pidObject (readonly)

Returns the value of attribute pid.



289
290
291
# File 'lib/vagrant/util/subprocess.rb', line 289

def pid
  @pid
end