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