summaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/script.h b/src/script.h
index ce697bc50..6da95acf7 100644
--- a/src/script.h
+++ b/src/script.h
@@ -20,8 +20,27 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef SCRIPT_HEADER
#define SCRIPT_HEADER
+#include <exception>
+#include <string>
+
+class LuaError : public std::exception
+{
+public:
+ LuaError(const std::string &s)
+ {
+ m_s = "LuaError: ";
+ m_s += s;
+ }
+ virtual ~LuaError() throw()
+ {}
+ virtual const char * what() const throw()
+ {
+ return m_s.c_str();
+ }
+ std::string m_s;
+};
+
typedef struct lua_State lua_State;
-//#include <string>
lua_State* script_init();
void script_deinit(lua_State *L);