We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9b17a commit 03a8067Copy full SHA for 03a8067
QueryStringParameters.cls
@@ -20,6 +20,27 @@ Attribute VB_Exposed = False
20
' ===================================================
21
'
22
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
44
''
45
' This class name
46
' @var string
0 commit comments