summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/reference/simple_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 8797ece..1e3cb85 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -503,7 +503,7 @@ You can create an exception and set your own traceback in one step using the
:meth:`with_traceback` exception method (which returns the same exception
instance, with its traceback set to its argument), like so::
- raise RuntimeError("foo occurred").with_traceback(tracebackobj)
+ raise Exception("foo occurred").with_traceback(tracebackobj)
.. index:: pair: exception; chaining
__cause__ (exception attribute)