Re-Raising Exceptions

Mon 10 August 2026
try:
    value = int("xyz")
except ValueError:
    print("Logging error before re-raising")
    raise
Logging error before re-raising



---------------------------------------------------------------------------

ValueError                                Traceback (most recent call last)

Cell In[1], line 2
      1 try:
----> 2     value = int("xyz")
      3 except ValueError:
      4     print("Logging error before re-raising")


ValueError: invalid literal for int() with base 10: 'xyz'


Score: 10

Category: chapter6_exception_handling