Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1519:3ebf9781707c
http error handling
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 19 Jun 2020 20:10:47 -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); } }