libs.capnproto-dotnetcore_R.../Capnp.Net.Runtime/Rpc/InvalidCapabilityInterfaceException.cs
Christian Köllner 5b8f6722ec nullability step 2
2020-01-11 17:56:12 +01:00

24 lines
874 B
C#

namespace Capnp.Rpc
{
/// <summary>
/// Will be thrown if a type did not qualify as capability interface.
/// In order to qualify the type must be properly annotated with a <see cref="ProxyAttribute"/> and <see cref="SkeletonAttribute"/>.
/// See descriptions of these attributes for further details.
/// </summary>
public class InvalidCapabilityInterfaceException : System.Exception
{
/// <summary>
/// Constructs an instance.
/// </summary>
public InvalidCapabilityInterfaceException(string message) : base(message)
{
}
/// <summary>
/// Constructs an instance with message an inner exception.
/// </summary>
public InvalidCapabilityInterfaceException(string message, System.Exception innerException) : base(message, innerException)
{
}
}
}