Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 2119:57381da15e68 ssltesting
remove renewSsl.sh and renewSsl.plist
| author | Violet7 |
|---|---|
| date | Tue, 06 Jan 2026 15:10:58 -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); } }
