Christian Köllner 5b8f6722ec nullability step 2
2020-01-11 17:56:12 +01:00

22 lines
588 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)
{
}
}
}