Christian Köllner cbf2144ef4 Initial commit
2019-06-12 21:56:55 +02:00

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