view src/goodjava/rpc/RpcError.java @ 1419:59fd2e8b1b9d

stringify and json_string
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 25 Oct 2019 22:12:06 -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);
	}

}