Skip to content

Commit 0cb9609

Browse files
committed
add: error code 67
1 parent fd79356 commit 0cb9609

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

cryptlex/lexfloatclient/lexfloatclient_exception.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,6 @@ def get_error_message(code):
7878
return "Fingerprint couldn't be generated because Windows Management Instrumentation (WMI) service has been disabled. This error is specific to Windows only."
7979
if code == LexFloatStatusCodes.LF_E_MACHINE_FINGERPRINT:
8080
return 'Machine fingerprint has changed since activation.'
81+
if code == LexFloatStatusCodes.LF_E_PROXY_NOT_TRUSTED:
82+
return 'Request blocked due to untrusted proxy.'
8183
return 'Unknown error!'

cryptlex/lexfloatclient/lexfloatstatus_codes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ class LexFloatStatusCodes:
5858

5959
LF_E_MACHINE_FINGERPRINT = 66
6060

61+
LF_E_PROXY_NOT_TRUSTED = 67
62+
6163
LF_E_CLIENT = 70
6264

6365
LF_E_SERVER = 71

0 commit comments

Comments
 (0)