view core/src/luan/LuanRuntimeException.java @ 632:ff45bb2adfd3

add more lucene jars
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 26 Jan 2016 06:34:28 -0700
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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