Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ public static String getErrorMessage(int errorCode) {
case LF_E_SERVER_LICENSE_GRACE_PERIOD_OVER:
message = "The grace period for server license is over.";
break;
case LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY:
message = "Requested offline lease duration exceeds server license expiry date.";
break;
case LF_E_PROXY_NOT_TRUSTED:
message = "Request blocked due to untrusted proxy.";
break;
Expand Down Expand Up @@ -410,4 +413,11 @@ public static String getErrorMessage(int errorCode) {
* MESSAGE: The grace period for server license is over.
*/
public static final int LF_E_SERVER_LICENSE_GRACE_PERIOD_OVER = 76;

/*
* CODE: LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY
*
* MESSAGE: Requested offline lease duration exceeds server license expiry date.
*/
public static final int LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY = 77;
}
Loading