DocSpace-buildtools/common/ASC.Core.Common/Billing/License/LicenseException.cs

26 lines
740 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Billing;
[Serializable]
public class LicenseException : BillingException
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
public LicenseException(string message, object debugInfo = null) : base(message, debugInfo) { }
}
2019-05-15 14:56:09 +00:00
2022-02-15 11:52:43 +00:00
[Serializable]
public class LicenseExpiredException : LicenseException
{
public LicenseExpiredException(string message, object debugInfo = null) : base(message, debugInfo) { }
}
2019-05-15 14:56:09 +00:00
2022-02-15 11:52:43 +00:00
[Serializable]
public class LicenseQuotaException : LicenseException
{
public LicenseQuotaException(string message, object debugInfo = null) : base(message, debugInfo) { }
}
2019-05-15 14:56:09 +00:00
2022-02-15 11:52:43 +00:00
[Serializable]
public class LicensePortalException : LicenseException
{
public LicensePortalException(string message, object debugInfo = null) : base(message, debugInfo) { }
}