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.



250
251
252
253
# File 'lib/vagrant/util/subprocess.rb', line 250

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

Instance Attribute Details

#pidObject (readonly)

Returns the value of attribute pid.



248
249
250
# File 'lib/vagrant/util/subprocess.rb', line 248

def pid
  @pid
end