Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1475:c7b86342857f
more IoUtils
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 18 Apr 2020 11:02:18 -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); } }