view src/luan/LuaException.java @ 9:600676034a1a

add variables and tables git-svn-id: https://luan-java.googlecode.com/svn/trunk@10 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Wed, 21 Nov 2012 09:40:33 +0000
parents 4da26b11d12a
children 8a57ebfdfd78
line wrap: on
line source

package luan;


public class LuaException extends Exception {

	public LuaException(String msg) {
		super(msg);
	}

}