Skip to content

Commit 03a8067

Browse files
Update QueryStringParameters.cls
1 parent 3b9b17a commit 03a8067

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

QueryStringParameters.cls

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,27 @@ Attribute VB_Exposed = False
2020
' ===================================================
2121
'
2222

23+
''
24+
' Code Thows
25+
Public Enum QueryStringParametersThrowsCode
26+
27+
'' Invalid query string syntax
28+
invalidQueryStringParameters = 3589
29+
30+
'' Empty field in query string
31+
emptyField = 3590
32+
33+
'' Unknow error happened
34+
unknowError = 3591
35+
36+
'' Invalid value to assing a new key
37+
invalidValueToAssing = 3592
38+
39+
'' Value already exists
40+
valueAlreadyExists = 3593
41+
42+
End Enum
43+
2344
''
2445
' This class name
2546
' @var string

0 commit comments

Comments
 (0)