Files
ironlicensing-dotnet/Exceptions/LicenseRequiredException.cs
David Friedel 7d453f8f63 Initial commit: IronLicensing.Client SDK
Software licensing SDK for .NET MAUI applications with:
- License validation and activation
- Feature gating
- Trial support
- Offline validation with signature verification
- In-app purchase integration
2025-12-25 09:07:58 +00:00

13 lines
304 B
C#

namespace IronLicensing.Client.Exceptions;
public class LicenseRequiredException : Exception
{
public string FeatureKey { get; }
public LicenseRequiredException(string featureKey)
: base($"Feature '{featureKey}' requires a valid license")
{
FeatureKey = featureKey;
}
}