namespace Capnp.Rpc
{
///
/// Thrown when a pending question did return, but was not configured to deliver the result back to the sender
/// (typcial for tail calls).
///
public class NoResultsException: System.Exception
{
///
/// Creates an instance
///
public NoResultsException(): base("Pending question did return, but was not configured to deliver the result back to the sender")
{
}
}
}