-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibError.au3
42 lines (30 loc) · 946 Bytes
/
libError.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.14.2
Author: Sean Zeng
Script Function:
Server for passing license information to network clients via udp.
Error Handling. Parses errors and returns information
MIT LICENSE
#ce ----------------------------------------------------------------------------
#include-once
If Not IsDeclared("sProgramName") Then
Global $sProgramName = "!NOTE! TEST ONLY MODE"
EndIf
;error main function
Func errorFun($errorCode)
Switch $errorCode
case 1
errorMsgBox("Error No config file")
case 2
errorMsgBox("Error Client Connection(s) failed")
case 3
errorMsgBox("Error Unable to Intialize Socket")
case 4
errorMsgBox("Listening Socket taken, unable to use")
case else
errorMsgBox("Unknown Error Occured, Please be vigilent")
EndSwitch
EndFunc
Func errorMsgBox($Reason)
MsgBox(0,$sProgramName,$Reason)
EndFunc