1# Exception chaining is not supported, but check that basic
2# exception works as expected.
3try:
4    raise Exception from None
5except Exception:
6    print("Caught Exception")
7