view core/src/luan/LuanRuntimeException.java @ 630:8d83b53b7a7b

Added tag 0.15 for changeset 35dde32c02ab
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 22 Jan 2016 03:30:35 -0700
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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