22 lines
588 B
C#
Raw Normal View History

2020-01-11 17:56:12 +01:00
namespace Capnp.Rpc
2019-06-12 21:56:55 +02:00
{
/// <summary>
/// Thrown when an RPC-related error condition occurs.
/// </summary>
public class RpcException : System.Exception
{
/// <summary>
/// Constructs an instance.
/// </summary>
2019-06-12 21:56:55 +02:00
public RpcException(string message) : base(message)
{
}
/// <summary>
/// Constructs an instance with message and inner exception.
/// </summary>
2019-06-12 21:56:55 +02:00
public RpcException(string message, System.Exception innerException) : base(message, innerException)
{
}
}
2020-01-11 17:56:12 +01:00
}