view core/src/luan/LuanRuntimeException.java @ 550:b2139b21b49c 0.10

use Io.repr() in lucene/Web_search
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 17 Jun 2015 19:50:32 -0600
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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