mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
22 lines
588 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |