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 e46761c commit 09b2e41Copy full SHA for 09b2e41
core/aws-core/src/main/java/software/amazon/awssdk/awscore/exception/AwsServiceException.java
@@ -107,6 +107,11 @@ public boolean isClockSkewException() {
107
ClockSkew.getServerTime(sdkHttpResponse).orElse(null));
108
}
109
110
+ /**
111
+ * Checks if the exception is caused by throttling, considering both generic SDK and AWS-specific error code details.
112
+ *
113
+ * @return true if the status code is 429 or if the AWS error code indicates throttling, otherwise false.
114
+ * */
115
@Override
116
public boolean isThrottlingException() {
117
return super.isThrottlingException() ||
0 commit comments