This method is called when an exception happens in a Lua script. It is called with a lupa.LuaError instance and can raise a custom ScriptError.
(self, lua_exception)
| 84 | pass |
| 85 | |
| 86 | def on_lua_error(self, lua_exception): |
| 87 | """ |
| 88 | This method is called when an exception happens in a Lua script. |
| 89 | It is called with a lupa.LuaError instance and can raise a custom |
| 90 | ScriptError. |
| 91 | """ |
| 92 | pass |
| 93 | |
| 94 | def dispatch(self, cmd_id, *args): |
| 95 | """ Execute the script """ |