view src/goodjava/rpc/RpcError.java @ 1849:9f2680fe532b default tip

better proc handling
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 21 Feb 2025 12:23:56 -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);
	}

}