2019-07-12 21:48:01 +02:00

23 lines
589 B
C#

namespace Capnp.Rpc
{
/// <summary>
/// Thrown when an RPC-related error condition occurs.
/// </summary>
public class RpcException : System.Exception
{
/// <summary>
/// Constructs an instance.
/// </summary>
public RpcException(string message) : base(message)
{
}
/// <summary>
/// Constructs an instance with message and inner exception.
/// </summary>
public RpcException(string message, System.Exception innerException) : base(message, innerException)
{
}
}
}