view src/luan/LuanRuntimeException.java @ 1576:13135e289b50

domain change
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 28 Jan 2021 20:47:39 -0700
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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