Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1774:764723436f05
better json_parse exception
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 27 Jul 2023 17:24:49 -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); } }