summaryrefslogtreecommitdiff
path: root/src/LuaTask.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/LuaTask.cc')
-rw-r--r--src/LuaTask.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/LuaTask.cc b/src/LuaTask.cc
index 7e0b256..12d4435 100644
--- a/src/LuaTask.cc
+++ b/src/LuaTask.cc
@@ -57,7 +57,12 @@ void Balau::LuaMainTask::Do() {
}
void Balau::LuaTask::Do() {
- m_cell->run(L);
+ try {
+ m_cell->run(L);
+ }
+ catch (...) {
+ m_cell->setError();
+ }
if (m_cell->m_detached)
delete m_cell;
else