view src/goodjava/rpc/RpcError.java @ 1881:c7c7d62f8c62

swing
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 07 Apr 2025 21:14:53 -0600
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);
	}

}