mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
25 lines
875 B
C#
25 lines
875 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)
|
|
{
|
|
}
|
|
}
|
|
}
|