https://www.programiz.com/python-programming/exceptions
There is a list of exceptions in Python, and I am trying to make a list (or a set) of the exception names.
I could just simply hard code the names, but is there a way to somehow do this programmatically? Like import the exception class and get all those types of exceptions and put them a list of strings?