exception_chain.py 174 B

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