Christian Köllner c3cbb123c8 refactored codegen to use generated schema
fixed issue #45
refactored codegen unit tests
fixed appveyor.yml
2020-04-19 16:16:48 +02:00

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")
{
}
}
}