diff --git a/doc/throw_exception.html b/doc/throw_exception.html new file mode 100644 index 0000000..853c8aa --- /dev/null +++ b/doc/throw_exception.html @@ -0,0 +1,67 @@ + + +
+ +#include <boost/throw_exception.hpp>
+namespace
+boost
+ {
+ #ifdef BOOST_NO_EXCEPTIONS
+
+ void throw_exception( std::exception const & e ); // user defined
+
+ #else
+
+ template <class E>
+ void throw_exception( E const & e );
+
+ #endif
+ }
+E must derive publicly from std::exception.
+