A class that overrides the Exception class.
Will accept a str value.
str
Exception
from milesianpy.error_handling import operator_error operator_error_class = operator_error.OperatorError try: # Your code hereexcept operator_error_class: # Do stuff here