python try except custom error code example

Example 1: exception pyton print

except Exception as e: print(e)

Example 2: python raise exception

# this raises a "NameError"

>>> raise NameError('HiThere')

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: HiThere

Example 3: error handling in python

try:
  print(x)
except SyntaxError:
  print("There is a SyntaxError in your code")
except NameError:
  print("There is a NameError in your code")
except TypeError:
  print("There is a TypeError in your code")

Example 4: python: raise error

class MyError(TypeError):
    pass

raise MyError('An error happened')