view src/luan/LuanRuntimeException.java @ 1195:9a57f0b16c2b

better String.split
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 26 Feb 2018 19:07:49 -0700
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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