class CommandFailure

Authors: Christopher M Wood (<woodc@us.ibm.com>)

John F Hutchinson (<jfhutchi@us.ibm.com)

© Copyright IBM Corporation 2015.

LICENSE: MIT (opensource.org/licenses/MIT)

Attributes

exit_code[R]
exit_signal[R]
stderr[R]

Public Class Methods

new(stderr, exit_code, exit_signal) click to toggle source
# File lib/rbvppc/command_failure.rb, line 11
def initialize(stderr, exit_code, exit_signal)
    @stderr, @exit_code, @exit_signal = stderr, exit_code, exit_signal
end

Public Instance Methods

to_s() click to toggle source
# File lib/rbvppc/command_failure.rb, line 15
def to_s
    return @stderr
end