namespace Capnp.Rpc { /// /// Thrown when an RPC-related error condition occurs. /// public class RpcException : System.Exception { /// /// Constructs an instance. /// public RpcException(string message) : base(message) { } /// /// Constructs an instance with message and inner exception. /// public RpcException(string message, System.Exception innerException) : base(message, innerException) { } } }