Mercurial Hosting > luan
view src/goodjava/rpc/RpcError.java @ 1850:64b7076c635c default tip
better link_to_domain
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 22 Feb 2025 20:26:31 -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); } }