class PantographCore::PantographPtyError

Attributes

exit_status[R]

Public Class Methods

new(e, exit_status) click to toggle source
Calls superclass method
# File pantograph_core/lib/pantograph_core/pantograph_pty.rb, line 14
def initialize(e, exit_status)
  super(e)
  set_backtrace(e.backtrace) if e
  @exit_status = exit_status
end