view src/goodjava/rpc/RpcError.java @ 1982:0f59713aeaeb

fix copy and paste
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 27 Jun 2025 22:27:40 -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);
	}

}