module Byebug

def self.handle_post_mortem


prompt back to the user before program termination.
Saves information about the unhandled exception and gives a byebug
def self.handle_post_mortem
  return unless raised_exception
  context = raised_exception.__bb_context
  PostMortemProcessor.new(context).at_line
end