Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1547:f24a9ba7551e
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 24 Sep 2020 15:33:56 -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); } }