]> git.lyx.org Git - lyx.git/blob - src/boost.C
architectural changes to tex2lyx
[lyx.git] / src / boost.C
1 #include <config.h>
2
3 #include "debug.h"
4 #include "support/LAssert.h"
5
6 #include <exception>
7
8 using namespace lyx::support;
9
10 using std::endl;
11
12 namespace boost {
13
14 void throw_exception(std::exception const & e)
15 {
16         lyxerr << "Exception caught:\n"
17             << e.what() << endl;
18         Assert(false);
19 }
20
21
22 }