view src/goodjava/rpc/RpcError.java @ 1817:969ced346cef

docs - Table
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 16 Jun 2024 20:00:50 -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);
	}

}