From 8be818bc44505bdbf84c875279c33afe5bd6735d Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 19 Dec 2020 14:01:57 -0800 Subject: [PATCH] Added link to Boost LEAF --- doc/boost-exception.html | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/boost-exception.html b/doc/boost-exception.html index f7d0e89..45ecd94 100644 --- a/doc/boost-exception.html +++ b/doc/boost-exception.html @@ -19,6 +19,7 @@ +

NOTE: If you are using C++11 or newer and Boost 1.75 or newer, you might consider using Boost LEAF instead of Boost Exception.

Introduction

The purpose of Boost Exception is to ease the design of exception class hierarchies and to help write exception handling and error reporting code.

It supports transporting of arbitrary data to the catch site, which is otherwise tricky due to the no-throw requirements (15.5.1) for exception types. Data can be added to any exception object, either directly in the throw-expression (15.1), or at a later time as the exception object propagates up the call stack.