Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1833:e6a5f178e5f9
remove discord
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 22 Dec 2024 18:46:25 -0700 |
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); } }