boost exceptions
boost, c++, exception
Solution
According to the documentation `boost::exception` doesn't inherit `std::exception`.
The FAQ explains why.
However this page explains how to correctly use Boost exceptions.
Problem
Do all boost exceptions derive from std::exception? If not do they all derive from some base exception class?