view src/luan/LuanRuntimeException.java @ 1507:c8f4867fd083

remove unused file
author Vadim Filimonov <fffilimonov@yandex.ru>
date Sat, 16 May 2020 12:33:41 +0300
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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