view src/goodjava/rpc/RpcError.java @ 1746:74f33278344f

fix java in shell
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 21 Dec 2022 22:46:38 -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);
	}

}