9 lines
199 B
Python
9 lines
199 B
Python
# -*- coding: utf-8 -*-
|
|
import traceback
|
|
|
|
|
|
class ExceptionUtils:
|
|
@classmethod
|
|
def exception_traceback(cls, e):
|
|
print(f"\nException: {str(e)}\nCallstack:\n{traceback.format_exc()}\n")
|