mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
16 lines
513 B
C#
16 lines
513 B
C#
namespace Capnp.Rpc
|
|
{
|
|
/// <summary>
|
|
/// Thrown when a pending question did return, but was not configured to deliver the result back to the sender
|
|
/// (typcial for tail calls).
|
|
/// </summary>
|
|
public class NoResultsException: System.Exception
|
|
{
|
|
/// <summary>
|
|
/// Creates an instance
|
|
/// </summary>
|
|
public NoResultsException(): base("Pending question did return, but was not configured to deliver the result back to the sender")
|
|
{
|
|
}
|
|
}
|
|
} |