Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 2125:dd676a2b48cf
merge previous
| author | Violet7 |
|---|---|
| date | Tue, 13 Jan 2026 13:40:46 -0800 |
| 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); } }
