mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
17 lines
394 B
C#
17 lines
394 B
C#
|
namespace Capnp.Rpc
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Thrown when an RPC-related error condition occurs.
|
|||
|
/// </summary>
|
|||
|
public class RpcException : System.Exception
|
|||
|
{
|
|||
|
public RpcException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public RpcException(string message, System.Exception innerException) : base(message, innerException)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|