]> git.lyx.org Git - lyx.git/blob - src/boost.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / boost.C
1 /**
2  * \file boost.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "debug.h"
14 #include "support/LAssert.h"
15
16 #include <exception>
17
18 using namespace lyx::support;
19
20 using std::endl;
21
22 namespace boost {
23
24 void throw_exception(std::exception const & e)
25 {
26         lyxerr << "Exception caught:\n"
27             << e.what() << endl;
28         Assert(false);
29 }
30
31
32 }