view src/goodjava/rpc/RpcError.java @ 2152:13f2ef0fe1de nginx_sites_addon

nginx_sites include fix
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 27 Jan 2026 17:14:33 -0700
parents 27efb1fcbcb5
children
line wrap: on
line source

package goodjava.rpc;


public class RpcError extends RuntimeException {

	public RpcError(String msg) {
		super(msg);
	}

	public RpcError(Exception e) {
		super(e);
	}

}