Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 2115:5b434c8a27bd ssltesting tip
disable hardcoded dry_run = false
| author | Violet7 |
|---|---|
| date | Mon, 22 Dec 2025 18:54:30 -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); } }
