diff src/luan/LuanClosure.java @ 1347:643cf1c37723

move webserver to lib and bug fixes
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 25 Feb 2019 13:02:33 -0700
parents e0cf0d108a77
children 221eedb0f54e
line wrap: on
line diff
--- a/src/luan/LuanClosure.java	Mon Feb 25 12:29:33 2019 -0700
+++ b/src/luan/LuanClosure.java	Mon Feb 25 13:02:33 2019 -0700
@@ -27,7 +27,7 @@
 		try {
 			return doCall(luan,args);
 		} catch(StackOverflowError e) {
-			throw new LuanException( "stack overflow" );
+			throw new LuanException( "stack overflow", e );
 		} finally {
 			luan.pop();
 		}