view src/luan/LuanRuntimeException.java @ 1298:01a380c494f2

stringify defaults to not strict
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 10 Jan 2019 23:20:27 -0700
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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