view src/luan/LuanRuntimeException.java @ 92:d03022acea47

don't allow "%>" in output statement string git-svn-id: https://luan-java.googlecode.com/svn/trunk@93 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 07 Mar 2013 23:09:01 +0000
parents 97b03fc807ad
children
line wrap: on
line source

package luan;


public final class LuanRuntimeException extends RuntimeException {
	public LuanRuntimeException(LuanException e) {
		super(e);
	}
}