view src/luan/LuaException.java @ 14:2ddf85634d20

whitespace handling; comments; if/while/repeat statements; git-svn-id: https://luan-java.googlecode.com/svn/trunk@15 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Mon, 26 Nov 2012 10:18:46 +0000
parents 4da26b11d12a
children 8a57ebfdfd78
line wrap: on
line source

package luan;


public class LuaException extends Exception {

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

}