Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 2163:9abb0272665d default tip
merge nginx_sites_addon
| author | Violet7 |
|---|---|
| date | Sun, 01 Feb 2026 15:30:31 -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); } }
