class Process::Pipeline::CommandError

Attributes

status[R]
step[R]

Public Class Methods

new(step, status) click to toggle source
Calls superclass method
# File lib/process/pipeline/command_error.rb, line 24
def initialize(step, status)
        @step = step
        @status = status
        
        super "Command #{step.command.inspect} exited with status #{@status.to_i}!"
end