diff core/src/luan/LuanException.java @ 578:60c549d43988

remove LuanState.exception()
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Jul 2015 17:40:48 -0600
parents 4723d22062ce
children 859c0dedc8b6
line wrap: on
line diff
--- a/core/src/luan/LuanException.java	Mon Jul 13 20:53:02 2015 -0600
+++ b/core/src/luan/LuanException.java	Tue Jul 14 17:40:48 2015 -0600
@@ -11,7 +11,7 @@
 		super(msg,cause);
 	}
 
-	LuanException(LuanState luan,Object msg) throws LuanException {
+	public LuanException(LuanState luan,Object msg) throws LuanException {
 		this( luan.toString(msg), msg instanceof Throwable ? (Throwable)msg : null );
 		table.rawPut( "java", this );
 		table.rawPut( "message", msg );