class Scmd::RunError

Public Class Methods

new(stderr, called_from = nil) click to toggle source
Calls superclass method
# File lib/scmd.rb, line 52
def initialize(stderr, called_from = nil)
  super(stderr)
  set_backtrace(called_from || caller)
end