if this raises an error, then pythong code example
Example 1: throwing an exception python
raise Exception("message")
Example 2: python: raise error
class MyError(TypeError):
pass
raise MyError('An error happened')
raise Exception("message")
class MyError(TypeError):
pass
raise MyError('An error happened')