Class ApiCallAttemptTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- software.amazon.awssdk.core.exception.SdkException
-
- software.amazon.awssdk.core.exception.SdkClientException
-
- software.amazon.awssdk.core.exception.ApiCallAttemptTimeoutException
-
- All Implemented Interfaces:
Serializable
public final class ApiCallAttemptTimeoutException extends SdkClientException
Signals that an api call attempt could not complete within the specified timeout.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ApiCallAttemptTimeoutException.Builder
protected static class
ApiCallAttemptTimeoutException.BuilderImpl
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApiCallAttemptTimeoutException.Builder
builder()
static ApiCallAttemptTimeoutException
create(long timeout)
static ApiCallAttemptTimeoutException
create(String message, Throwable cause)
ApiCallAttemptTimeoutException.Builder
toBuilder()
Create aSdkClientException.Builder
initialized with the properties of thisSdkClientException
.-
Methods inherited from class software.amazon.awssdk.core.exception.SdkClientException
create
-
Methods inherited from class software.amazon.awssdk.core.exception.SdkException
retryable
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
create
public static ApiCallAttemptTimeoutException create(long timeout)
-
create
public static ApiCallAttemptTimeoutException create(String message, Throwable cause)
-
toBuilder
public ApiCallAttemptTimeoutException.Builder toBuilder()
Description copied from class:SdkClientException
Create aSdkClientException.Builder
initialized with the properties of thisSdkClientException
.- Overrides:
toBuilder
in classSdkClientException
- Returns:
- A new builder initialized with this config's properties.
-
builder
public static ApiCallAttemptTimeoutException.Builder builder()
-
-