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.



227
228
229
230
# File 'lib/vagrant/util/subprocess.rb', line 227

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

Instance Attribute Details

#pidObject (readonly)

Returns the value of attribute pid.



225
226
227
# File 'lib/vagrant/util/subprocess.rb', line 225

def pid
  @pid
end