view src/goodjava/rpc/RpcError.java @ 1413:514b7a62fe27

compiler bug
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 06 Oct 2019 22:23:11 -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);
	}

}