From 4815e3f6b28342269474bf409b99ab85dc2bafa4 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Wed, 6 Dec 2023 23:22:44 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- python_basics/exceptions/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python_basics/exceptions/README.md b/python_basics/exceptions/README.md index 6247c08..e91315a 100644 --- a/python_basics/exceptions/README.md +++ b/python_basics/exceptions/README.md @@ -271,6 +271,10 @@ finally: ## Chaining exceptions +{: .topic-optional} +This is an optional topic! + + Instead of just re-raising an exception we can also add to it with **from**.  ```python