forked from gooberinc/goober
18 lines
610 B
Python
18 lines
610 B
Python
import sys
|
|
import traceback
|
|
from modules.globalvars import RED, RESET
|
|
from modules.volta.main import _
|
|
|
|
def handle_exception(exc_type, exc_value, exc_traceback, *, context=None):
|
|
if issubclass(exc_type, KeyboardInterrupt):
|
|
sys.__excepthook__(exc_type, exc_value, exc_traceback)
|
|
return
|
|
print(f"{RED}=====BEGINNING OF TRACEBACK====={RESET}")
|
|
traceback.print_exception(exc_type, exc_value, exc_traceback)
|
|
print(f"{RED}========END OF TRACEBACK========{RESET}")
|
|
print(f"{RED}{_('unhandled_exception')}{RESET}")
|
|
if context:
|
|
print(f"{RED}Context: {context}{RESET}")
|
|
|
|
|
|
|