view core/src/luan/LuanRuntimeException.java @ 612:bb9a790d8401

Added tag 0.14 for changeset 8bd98da6991a
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 13 Dec 2015 17:44:58 -0700
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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