view src/luan/LuanRuntimeException.java @ 1117:9a1aa6fc0b4e

remove json_pretty_string and make json_string somewhat pretty
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 04 Aug 2017 11:15:53 -0600
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


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