view core/src/luan/LuanRuntimeException.java @ 760:2a91bde4e1e1

Added tag 0.21 for changeset ae612dfc57cb
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Jul 2016 19:15:02 -0600
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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