@@ -42,6 +42,12 @@ def __init__(self, *args, **kwargs):
42
42
self , * args , ** kwargs )
43
43
44
44
45
+ class CustomKeyInvalidFieldCreationException (SlicingDiceException ):
46
+ def __init__ (self , * args , ** kwargs ):
47
+ super (CustomKeyInvalidFieldCreationException , self ).__init__ (
48
+ self , * args , ** kwargs )
49
+
50
+
45
51
class CustomKeyInvalidPermissionForFieldException (SlicingDiceException ):
46
52
def __init__ (self , * args , ** kwargs ):
47
53
super (CustomKeyInvalidPermissionForFieldException , self ).__init__ (
@@ -66,6 +72,12 @@ def __init__(self, *args, **kwargs):
66
72
self , * args , ** kwargs )
67
73
68
74
75
+ class DemoApiInvalidEndpointException (SlicingDiceException ):
76
+ def __init__ (self , * args , ** kwargs ):
77
+ super (DemoApiInvalidEndpointException , self ).__init__ (
78
+ self , * args , ** kwargs )
79
+
80
+
69
81
# Request validations
70
82
class RequestMissingContentTypeException (SlicingDiceException ):
71
83
def __init__ (self , * args , ** kwargs ):
@@ -91,6 +103,30 @@ def __init__(self, *args, **kwargs):
91
103
self , * args , ** kwargs )
92
104
93
105
106
+ class RequestInvalidHttpMethodException (SlicingDiceException ):
107
+ def __init__ (self , * args , ** kwargs ):
108
+ super (RequestInvalidHttpMethodException , self ).__init__ (
109
+ self , * args , ** kwargs )
110
+
111
+
112
+ class RequestInvalidEndpointException (SlicingDiceException ):
113
+ def __init__ (self , * args , ** kwargs ):
114
+ super (RequestInvalidEndpointException , self ).__init__ (
115
+ self , * args , ** kwargs )
116
+
117
+
118
+ class RequestIncorrectHttpException (SlicingDiceException ):
119
+ def __init__ (self , * args , ** kwargs ):
120
+ super (RequestIncorrectHttpException , self ).__init__ (
121
+ self , * args , ** kwargs )
122
+
123
+
124
+ class RequestExceedLimitException (SlicingDiceException ):
125
+ def __init__ (self , * args , ** kwargs ):
126
+ super (RequestExceedLimitException , self ).__init__ (
127
+ self , * args , ** kwargs )
128
+
129
+
94
130
# Account Errors
95
131
class AccountMissingPaymentMethodException (SlicingDiceException ):
96
132
def __init__ (self , * args , ** kwargs ):
@@ -189,6 +225,12 @@ def __init__(self, *args, **kwargs):
189
225
self , * args , ** kwargs )
190
226
191
227
228
+ class FieldExceedDescriptionlengthException (SlicingDiceException ):
229
+ def __init__ (self , * args , ** kwargs ):
230
+ super (FieldExceedDescriptionlengthException , self ).__init__ (
231
+ self , * args , ** kwargs )
232
+
233
+
192
234
class FieldInvalidCardinalityException (SlicingDiceException ):
193
235
def __init__ (self , * args , ** kwargs ):
194
236
super (FieldInvalidCardinalityException , self ).__init__ (
@@ -207,10 +249,34 @@ def __init__(self, *args, **kwargs):
207
249
self , * args , ** kwargs )
208
250
209
251
252
+ class FieldExceededMaxNameLenghtException (SlicingDiceException ):
253
+ def __init__ (self , * args , ** kwargs ):
254
+ super (FieldExceededMaxNameLenghtException , self ).__init__ (
255
+ self , * args , ** kwargs )
256
+
257
+
258
+ class FieldExceededMaxApiNameLenghtException (SlicingDiceException ):
259
+ def __init__ (self , * args , ** kwargs ):
260
+ super (FieldExceededMaxApiNameLenghtException , self ).__init__ (
261
+ self , * args , ** kwargs )
262
+
263
+
264
+ class FieldEmptyEntityIdException (SlicingDiceException ):
265
+ def __init__ (self , * args , ** kwargs ):
266
+ super (FieldEmptyEntityIdException , self ).__init__ (
267
+ self , * args , ** kwargs )
268
+
269
+
270
+ class FieldExceededPermitedValueException (SlicingDiceException ):
271
+ def __init__ (self , * args , ** kwargs ):
272
+ super (FieldExceededPermitedValueException , self ).__init__ (
273
+ self , * args , ** kwargs )
274
+
275
+
210
276
# Index errors
211
- class IndexEntityKeyTypeException (SlicingDiceException ):
277
+ class IndexInvalidDecimalPlacesException (SlicingDiceException ):
212
278
def __init__ (self , * args , ** kwargs ):
213
- super (IndexEntityKeyTypeException , self ).__init__ (
279
+ super (IndexInvalidDecimalPlacesException , self ).__init__ (
214
280
self , * args , ** kwargs )
215
281
216
282
@@ -244,9 +310,9 @@ def __init__(self, *args, **kwargs):
244
310
self , * args , ** kwargs )
245
311
246
312
247
- class IndexDateFormatException (SlicingDiceException ):
313
+ class IndexTimeSeriesDateFormatException (SlicingDiceException ):
248
314
def __init__ (self , * args , ** kwargs ):
249
- super (IndexDateFormatException , self ).__init__ (
315
+ super (IndexTimeSeriesDateFormatException , self ).__init__ (
250
316
self , * args , ** kwargs )
251
317
252
318
@@ -268,6 +334,12 @@ def __init__(self, *args, **kwargs):
268
334
self , * args , ** kwargs )
269
335
270
336
337
+ class IndexDateFormatException (SlicingDiceException ):
338
+ def __init__ (self , * args , ** kwargs ):
339
+ super (IndexDateFormatException , self ).__init__ (
340
+ self , * args , ** kwargs )
341
+
342
+
271
343
class IndexFieldStringEmptyValueException (SlicingDiceException ):
272
344
def __init__ (self , * args , ** kwargs ):
273
345
super (IndexFieldStringEmptyValueException , self ).__init__ (
@@ -310,6 +382,18 @@ def __init__(self, *args, **kwargs):
310
382
self , * args , ** kwargs )
311
383
312
384
385
+ class QueryRelativeIntervalException (SlicingDiceException ):
386
+ def __init__ (self , * args , ** kwargs ):
387
+ super (QueryRelativeIntervalException , self ).__init__ (
388
+ self , * args , ** kwargs )
389
+
390
+
391
+ class QueryDateFormatException (SlicingDiceException ):
392
+ def __init__ (self , * args , ** kwargs ):
393
+ super (QueryDateFormatException , self ).__init__ (
394
+ self , * args , ** kwargs )
395
+
396
+
313
397
# Query errors
314
398
class QueryMissingQueryException (SlicingDiceException ):
315
399
def __init__ (self , * args , ** kwargs ):
@@ -365,9 +449,9 @@ def __init__(self, *args, **kwargs):
365
449
self , * args , ** kwargs )
366
450
367
451
368
- class QueryDateFormatException (SlicingDiceException ):
452
+ class QueryInvalidMetricException (SlicingDiceException ):
369
453
def __init__ (self , * args , ** kwargs ):
370
- super (QueryDateFormatException , self ).__init__ (
454
+ super (QueryInvalidMetricException , self ).__init__ (
371
455
self , * args , ** kwargs )
372
456
373
457
@@ -565,7 +649,43 @@ def __init__(self, *args, **kwargs):
565
649
566
650
class QueryCountInvalidParameterErrorException (SlicingDiceException ):
567
651
def __init__ (self , * args , ** kwargs ):
568
- super (QueryLevelLimitException , self ).__init__ (
652
+ super (QueryCountInvalidParameterErrorException , self ).__init__ (
653
+ self , * args , ** kwargs )
654
+
655
+
656
+ class QueryInvalidMinfreqException (SlicingDiceException ):
657
+ def __init__ (self , * args , ** kwargs ):
658
+ super (QueryInvalidMinfreqException , self ).__init__ (
659
+ self , * args , ** kwargs )
660
+
661
+
662
+ class QueryExceededMaxNumberQuerysException (SlicingDiceException ):
663
+ def __init__ (self , * args , ** kwargs ):
664
+ super (QueryExceededMaxNumberQuerysException , self ).__init__ (
665
+ self , * args , ** kwargs )
666
+
667
+
668
+ class QueryInvalidOperatorUsageException (SlicingDiceException ):
669
+ def __init__ (self , * args , ** kwargs ):
670
+ super (QueryInvalidOperatorUsageException , self ).__init__ (
671
+ self , * args , ** kwargs )
672
+
673
+
674
+ class QueryInvalidParameterUsageException (SlicingDiceException ):
675
+ def __init__ (self , * args , ** kwargs ):
676
+ super (QueryInvalidParameterUsageException , self ).__init__ (
677
+ self , * args , ** kwargs )
678
+
679
+
680
+ class QueryParameterInvalidFieldUsageException (SlicingDiceException ):
681
+ def __init__ (self , * args , ** kwargs ):
682
+ super (QueryParameterInvalidFieldUsageException , self ).__init__ (
683
+ self , * args , ** kwargs )
684
+
685
+
686
+ class QueryInvalidFieldUsageException (SlicingDiceException ):
687
+ def __init__ (self , * args , ** kwargs ):
688
+ super (QueryInvalidFieldUsageException , self ).__init__ (
569
689
self , * args , ** kwargs )
570
690
571
691
0 commit comments