We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ba5d30 + 4a6edbb commit 8849572Copy full SHA for 8849572
2 files changed
cryptlex/lexfloatclient/lexfloatclient_exception.py
@@ -84,4 +84,6 @@ def get_error_message(code):
84
return 'No entitlement set is linked to the license.'
85
if code == LexFloatStatusCodes.LF_E_FEATURE_ENTITLEMENT_NOT_FOUND:
86
return 'The feature entitlement does not exist.'
87
+ if code == LexFloatStatusCodes.LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY:
88
+ return 'Requested offline lease duration exceeds server license expiry date.'
89
return 'Unknown error!'
cryptlex/lexfloatclient/lexfloatstatus_codes.py
@@ -77,3 +77,5 @@ class LexFloatStatusCodes:
77
LF_E_SERVER_LICENSE_SUSPENDED = 75
78
79
LF_E_SERVER_LICENSE_GRACE_PERIOD_OVER = 76
80
+
81
+ LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY = 77
0 commit comments