From be17909549bfe305655970099a20583de871024e Mon Sep 17 00:00:00 2001 From: Hubert Tong Date: Sun, 9 Nov 2025 23:39:45 -0500 Subject: [PATCH] [except.handle] Mark as note: exception object access via handler decl The subject paragraph is merely an observation and is redundant as normative text. Make it a note, and strike the end of the last sentence as it creates an impression that the exception object cannot be observed without rethrowing. --- source/exceptions.tex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/exceptions.tex b/source/exceptions.tex index ba2d34d04c..2a4d6d7bd5 100644 --- a/source/exceptions.tex +++ b/source/exceptions.tex @@ -741,11 +741,14 @@ within the handler. \pnum +\begin{note} When the handler declares an object, any changes to that object will not affect the exception object. When the handler declares a reference to an object, any changes to the referenced object are changes to the -exception object and will have effect should that object be rethrown.% +exception object. +\end{note} +% \indextext{exception handling!handler!match|)}% \indextext{exception handling!handler|)}