view core/src/luan/LuanRuntimeException.java @ 635:c83b8cefd922

better error handling in theme code
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 01 Mar 2016 07:01:58 -0700
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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