Re-raise exception in Python

Use raise to re-raise exception.

Example:

try: # ...
except: # ...
    print("Error occurred")
    raise

Related:

References: