view src/luan/LuaException.java @ 37:8a57ebfdfd78

add JavaLib git-svn-id: https://luan-java.googlecode.com/svn/trunk@38 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 20 Dec 2012 02:36:07 +0000
parents 4da26b11d12a
children e3624b7cd603
line wrap: on
line source

package luan;


public class LuaException extends Exception {

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

	public LuaException(Exception e) {
		super(e);
	}

}