Exception: Open4::SpawnError
Instance Attribute Summary collapse
-
#cmd ⇒ Object
readonly
Returns the value of attribute cmd.
-
#signals ⇒ Object
readonly
Returns the value of attribute signals.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #exitstatus ⇒ Object
-
#initialize(cmd, status) ⇒ SpawnError
constructor
A new instance of SpawnError.
Constructor Details
#initialize(cmd, status) ⇒ SpawnError
Returns a new instance of SpawnError.
144 145 146 147 148 149 150 151 152 153 |
# File 'lib/open4.rb', line 144 def initialize cmd, status @cmd, @status = cmd, status @signals = {} if status.signaled? @signals['termsig'] = status.termsig @signals['stopsig'] = status.stopsig end sigs = @signals.map{|k,v| "#{ k }:#{ v.inspect }"}.join(' ') super "cmd <#{ cmd }> failed with status <#{ exitstatus.inspect }> signals <#{ sigs }>" end |
Instance Attribute Details
#cmd ⇒ Object (readonly)
Returns the value of attribute cmd.
138 139 140 |
# File 'lib/open4.rb', line 138 def cmd @cmd end |
#signals ⇒ Object (readonly)
Returns the value of attribute signals.
140 141 142 |
# File 'lib/open4.rb', line 140 def signals @signals end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
139 140 141 |
# File 'lib/open4.rb', line 139 def status @status end |
Instance Method Details
#exitstatus ⇒ Object
141 142 143 |
# File 'lib/open4.rb', line 141 def exitstatus @status.exitstatus end |