view src/goodjava/rpc/RpcError.java @ 2165:481e3404ded8 default tip

-Dfile.encoding=UTF-8
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 04 Feb 2026 21:26:16 -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);
	}

}