view src/luan/LuaException.java @ 27:9de9be530625

minor git-svn-id: https://luan-java.googlecode.com/svn/trunk@28 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 06 Dec 2012 20:12:43 +0000
parents 4da26b11d12a
children 8a57ebfdfd78
line wrap: on
line source

package luan;


public class LuaException extends Exception {

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

}