view src/goodjava/rpc/RpcError.java @ 1637:a65802b06b01

add nginx scripts
author fffilimonov
date Thu, 16 Dec 2021 14:17:51 +0000
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);
	}

}