class RVM::ErrorWithResult
Generic error with the shell command output attached. The RVM::Shell::Result
instance is available via #result
.
Attributes
result[R]
Public Class Methods
new(result, message = nil)
click to toggle source
Calls superclass method
# File lib/rvm/errors.rb, line 11 def initialize(result, message = nil) @result = result super message end