class GitCurate::SystemCommandError

Error indicating that a system command has exited with a non-success exit status.

Attributes

exit_status[R]

Public Class Methods

new(message, exit_status) click to toggle source
Calls superclass method
# File lib/git_curate/exceptions.rb, line 11
def initialize(message, exit_status)
  super(message)
  @exit_status = exit_status
end