summaryrefslogtreecommitdiff
path: root/lib/BLua.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/BLua.cc')
-rw-r--r--lib/BLua.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc
index 1166915..95519a1 100644
--- a/lib/BLua.cc
+++ b/lib/BLua.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BLua.cc,v 1.17 2003-12-26 23:51:33 pixel Exp $ */
+/* $Id: BLua.cc,v 1.18 2004-05-01 11:48:57 pixel Exp $ */
#include <lualib.h>
@@ -27,8 +27,6 @@
#define BUFFERSIZE 2048
#endif
-typedef GeneralException LuaException;
-
class LuaStatics : public Base {
public:
static const char * getF(lua_State *, void *, size_t *);
@@ -619,3 +617,7 @@ void LuaObject::pushdestruct(Lua * L) throw (GeneralException) {
wantdestruct = true;
}
+
+LuaException::LuaException(String fn) : GeneralException(fn) { }
+
+LuaException::LuaException() { }