view src/goodjava/rpc/RpcError.java @ 2101:ad0a9ef64827 ssltesting

Https.renew_ssl
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 15 Dec 2025 23:05:49 -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);
	}

}