3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Lars Gullik Bjønnes
8 * Full author contact details are available in file CREDITS.
15 #include <boost/assert.hpp>
24 void throw_exception(std::exception const & e)
26 lyxerr << "Exception caught:\n"
32 void assertion_failed(char const * expr, char const * function,
33 char const * file, long line)
35 lyxerr << "Assertion triggered in " << function
36 << " by failing check \"" << expr << "\""
37 << " in file " << file << ":" << line << endl;