Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1787:aed284cae1f0
fix msys2 build
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 12 Dec 2023 19:15:29 -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); } }