view src/luan/LuanRuntimeException.java @ 1519:3ebf9781707c

http error handling
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 19 Jun 2020 20:10:47 -0600
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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