view core/src/luan/LuanRuntimeException.java @ 467:f86bf532f87c

improve LuanServlet to allow for URL mapping
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 08 May 2015 12:10:53 -0600
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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