System.ComponentModel.LicenseException
namespace System.ComponentModel
{
public class LicenseException : SystemException
{
public Type LicensedType { get; }
protected LicenseException(SerializationInfo info, StreamingContext context);
public LicenseException(Type type);
public LicenseException(Type type, object instance);
public LicenseException(Type type, object instance, string message);
public LicenseException(Type type, object instance, string message, Exception innerException);
}
}