raising errors with messages code example
Example 1: throwing an exception python
raise Exception("message")
Example 2: exception pyton print
except Exception as e: print(e)
raise Exception("message")
except Exception as e: print(e)