Python3, calling super's __init__ from a custom exception
问题 I have created custom exception in python 3 and the over all code works just fine. But there is one thing I am not able to wrap my head around is that why do I need to send my message to the Exception class's __init__() and how does it convert the Custom exception into that string message when I try to print the exception since the code in the Exception or even the BaseException does not do much. Not quite able to understand why call the super().__init__() from custom exception? 回答1: This is