diff core/src/luan/LuanJavaFunction.java @ 477:b8ddd55c9b11

delete LuanExitException
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 11 May 2015 14:36:33 -0600
parents 0bd42e774c50
children f1601a4ce1aa
line wrap: on
line diff
--- a/core/src/luan/LuanJavaFunction.java	Sun May 10 22:41:00 2015 -0600
+++ b/core/src/luan/LuanJavaFunction.java	Mon May 11 14:36:33 2015 -0600
@@ -94,8 +94,6 @@
 				throw (Error)cause;
 			if( cause instanceof LuanException )
 				throw (LuanException)cause;
-			if( cause instanceof LuanExitException )
-				throw (LuanExitException)cause;
 			throw luan.exception(cause);
 		} catch(InstantiationException e) {
 			throw new RuntimeException(e);