@@ -38,31 +38,31 @@ class SlicingDiceClientError extends ExtendableError {
38
38
39
39
// Specific Errors
40
40
41
- class DemoUnavailableException extends SlicingDiceError {
41
+ class DemoUnavailableError extends SlicingDiceError {
42
42
constructor ( data ) {
43
43
super ( data ) ;
44
44
}
45
45
}
46
46
47
- class RequestRateLimitException extends SlicingDiceError {
47
+ class RequestRateLimitError extends SlicingDiceError {
48
48
constructor ( data ) {
49
49
super ( data ) ;
50
50
}
51
51
}
52
52
53
- class RequestBodySizeExceededException extends SlicingDiceError {
53
+ class RequestBodySizeExceededError extends SlicingDiceError {
54
54
constructor ( data ) {
55
55
super ( data ) ;
56
56
}
57
57
}
58
58
59
- class IndexEntitiesLimitException extends SlicingDiceError {
59
+ class IndexEntitiesLimitError extends SlicingDiceError {
60
60
constructor ( data ) {
61
61
super ( data ) ;
62
62
}
63
63
}
64
64
65
- class IndexColumnsLimitException extends SlicingDiceError {
65
+ class IndexColumnsLimitError extends SlicingDiceError {
66
66
constructor ( data ) {
67
67
super ( data ) ;
68
68
}
@@ -73,9 +73,9 @@ class IndexColumnsLimitException extends SlicingDiceError {
73
73
module . exports = {
74
74
"SlicingDiceError" : SlicingDiceError ,
75
75
"SlicingDiceClientError" : SlicingDiceClientError ,
76
- "DemoUnavailableException " : DemoUnavailableException ,
77
- "RequestRateLimitException " : RequestRateLimitException ,
78
- "RequestBodySizeExceededException " : RequestBodySizeExceededException ,
79
- "IndexEntitiesLimitException " : IndexEntitiesLimitException ,
80
- "IndexColumnsLimitException " : IndexColumnsLimitException ,
76
+ "DemoUnavailableError " : DemoUnavailableError ,
77
+ "RequestRateLimitError " : RequestRateLimitError ,
78
+ "RequestBodySizeExceededError " : RequestBodySizeExceededError ,
79
+ "IndexEntitiesLimitError " : IndexEntitiesLimitError ,
80
+ "IndexColumnsLimitError " : IndexColumnsLimitError ,
81
81
}
0 commit comments