Catch Exception instead of Throwable for all but LuaThread run loop
This commit is contained in:
@@ -196,8 +196,8 @@ public class lua {
|
||||
}
|
||||
Varargs scriptargs = (args!=null? setGlobalArg(args, firstarg): LuaValue.NONE);
|
||||
c.invoke( scriptargs );
|
||||
} catch ( Throwable t ) {
|
||||
t.printStackTrace( System.err );
|
||||
} catch ( Exception e ) {
|
||||
e.printStackTrace( System.err );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user