view src/goodjava/rpc/RpcError.java @ 2161:eb5bdf29a664 nginx_sites_addon tip

mkdir nginx_sites in update2.sh
author Violet7
date Wed, 28 Jan 2026 17:46:37 -0800
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);
	}

}