mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
92d522b7f1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7224 a592a061-630c-0410-9148-cb99ea01b6c8
23 lines
290 B
C
23 lines
290 B
C
#include <config.h>
|
|
|
|
#include "debug.h"
|
|
#include "support/LAssert.h"
|
|
|
|
#include <exception>
|
|
|
|
using namespace lyx::support;
|
|
|
|
using std::endl;
|
|
|
|
namespace boost {
|
|
|
|
void throw_exception(std::exception const & e)
|
|
{
|
|
lyxerr << "Exception caught:\n"
|
|
<< e.what() << endl;
|
|
Assert(false);
|
|
}
|
|
|
|
|
|
}
|