@@ -42,6 +42,12 @@ def __init__(self, *args, **kwargs):
4242 self , * args , ** kwargs )
4343
4444
45+ class CustomKeyInvalidFieldCreationException (SlicingDiceException ):
46+ def __init__ (self , * args , ** kwargs ):
47+ super (CustomKeyInvalidFieldCreationException , self ).__init__ (
48+ self , * args , ** kwargs )
49+
50+
4551class CustomKeyInvalidPermissionForFieldException (SlicingDiceException ):
4652 def __init__ (self , * args , ** kwargs ):
4753 super (CustomKeyInvalidPermissionForFieldException , self ).__init__ (
@@ -66,6 +72,12 @@ def __init__(self, *args, **kwargs):
6672 self , * args , ** kwargs )
6773
6874
75+ class DemoApiInvalidEndpointException (SlicingDiceException ):
76+ def __init__ (self , * args , ** kwargs ):
77+ super (DemoApiInvalidEndpointException , self ).__init__ (
78+ self , * args , ** kwargs )
79+
80+
6981# Request validations
7082class RequestMissingContentTypeException (SlicingDiceException ):
7183 def __init__ (self , * args , ** kwargs ):
@@ -91,6 +103,30 @@ def __init__(self, *args, **kwargs):
91103 self , * args , ** kwargs )
92104
93105
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+
94130# Account Errors
95131class AccountMissingPaymentMethodException (SlicingDiceException ):
96132 def __init__ (self , * args , ** kwargs ):
@@ -189,6 +225,12 @@ def __init__(self, *args, **kwargs):
189225 self , * args , ** kwargs )
190226
191227
228+ class FieldExceedDescriptionlengthException (SlicingDiceException ):
229+ def __init__ (self , * args , ** kwargs ):
230+ super (FieldExceedDescriptionlengthException , self ).__init__ (
231+ self , * args , ** kwargs )
232+
233+
192234class FieldInvalidCardinalityException (SlicingDiceException ):
193235 def __init__ (self , * args , ** kwargs ):
194236 super (FieldInvalidCardinalityException , self ).__init__ (
@@ -207,10 +249,34 @@ def __init__(self, *args, **kwargs):
207249 self , * args , ** kwargs )
208250
209251
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+
210276# Index errors
211- class IndexEntityKeyTypeException (SlicingDiceException ):
277+ class IndexInvalidDecimalPlacesException (SlicingDiceException ):
212278 def __init__ (self , * args , ** kwargs ):
213- super (IndexEntityKeyTypeException , self ).__init__ (
279+ super (IndexInvalidDecimalPlacesException , self ).__init__ (
214280 self , * args , ** kwargs )
215281
216282
@@ -244,9 +310,9 @@ def __init__(self, *args, **kwargs):
244310 self , * args , ** kwargs )
245311
246312
247- class IndexDateFormatException (SlicingDiceException ):
313+ class IndexTimeSeriesDateFormatException (SlicingDiceException ):
248314 def __init__ (self , * args , ** kwargs ):
249- super (IndexDateFormatException , self ).__init__ (
315+ super (IndexTimeSeriesDateFormatException , self ).__init__ (
250316 self , * args , ** kwargs )
251317
252318
@@ -268,6 +334,12 @@ def __init__(self, *args, **kwargs):
268334 self , * args , ** kwargs )
269335
270336
337+ class IndexDateFormatException (SlicingDiceException ):
338+ def __init__ (self , * args , ** kwargs ):
339+ super (IndexDateFormatException , self ).__init__ (
340+ self , * args , ** kwargs )
341+
342+
271343class IndexFieldStringEmptyValueException (SlicingDiceException ):
272344 def __init__ (self , * args , ** kwargs ):
273345 super (IndexFieldStringEmptyValueException , self ).__init__ (
@@ -310,6 +382,18 @@ def __init__(self, *args, **kwargs):
310382 self , * args , ** kwargs )
311383
312384
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+
313397# Query errors
314398class QueryMissingQueryException (SlicingDiceException ):
315399 def __init__ (self , * args , ** kwargs ):
@@ -365,9 +449,9 @@ def __init__(self, *args, **kwargs):
365449 self , * args , ** kwargs )
366450
367451
368- class QueryDateFormatException (SlicingDiceException ):
452+ class QueryInvalidMetricException (SlicingDiceException ):
369453 def __init__ (self , * args , ** kwargs ):
370- super (QueryDateFormatException , self ).__init__ (
454+ super (QueryInvalidMetricException , self ).__init__ (
371455 self , * args , ** kwargs )
372456
373457
@@ -569,6 +653,42 @@ def __init__(self, *args, **kwargs):
569653 self , * args , ** kwargs )
570654
571655
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__ (
689+ self , * args , ** kwargs )
690+
691+
572692# Internal errors
573693class InternalException (SlicingDiceException ):
574694 def __init__ (self , * args , ** kwargs ):
0 commit comments