Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1856:1b5a8b4fc971
update link
| author | fffilimonov |
|---|---|
| date | Thu, 27 Feb 2025 19:32:10 +0200 |
| 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); } }
