diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html index ded9b36f155..6f5a35c6b63 100644 --- a/docs/ExceptionHandling.html +++ b/docs/ExceptionHandling.html @@ -295,15 +295,17 @@
  • __cxa_begin_catch takes a exception structure reference as an argument and returns the value of the exception object.
  • -
  • __cxa_end_catch takes no arguments. This function - - - - Note: a rethrow from within the catch may replace this call with - a __cxa_rethrow.
  • +
  • __cxa_end_catch takes no arguments. This function: +

      +
    1. Locates the most recently caught exception and decrements its handler + count,
    2. +
    3. Removes the exception from the "caught" stack if the handler count + goes to zero, and
    4. +
    5. Destroys the exception if the handler count goes to zero, and the + exception was not re-thrown by throw.
    6. +

    +

    Note: a rethrow from within the catch may replace this call with + a __cxa_rethrow.