Class ApiCallTimeoutException.BuilderImpl
- java.lang.Object
-
- software.amazon.awssdk.core.exception.SdkException.BuilderImpl
-
- software.amazon.awssdk.core.exception.SdkClientException.BuilderImpl
-
- software.amazon.awssdk.core.exception.ApiCallTimeoutException.BuilderImpl
-
- All Implemented Interfaces:
ApiCallTimeoutException.Builder
,SdkClientException.Builder
,SdkException.Builder
,Buildable
- Enclosing class:
- ApiCallTimeoutException
protected static final class ApiCallTimeoutException.BuilderImpl extends SdkClientException.BuilderImpl implements ApiCallTimeoutException.Builder
-
-
Field Summary
-
Fields inherited from class software.amazon.awssdk.core.exception.SdkException.BuilderImpl
cause, message, numAttempts, writableStackTrace
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BuilderImpl()
protected
BuilderImpl(ApiCallTimeoutException ex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiCallTimeoutException
build()
Creates a newSdkException
with the specified properties.ApiCallTimeoutException.Builder
cause(Throwable cause)
Specifies the exception that caused this exception to occur.ApiCallTimeoutException.Builder
message(String message)
Specifies the details of this exception.ApiCallTimeoutException.Builder
numAttempts(Integer numAttempts)
ApiCallTimeoutException.Builder
writableStackTrace(Boolean writableStackTrace)
Specifies whether the stack trace in this exception can be written.-
Methods inherited from class software.amazon.awssdk.core.exception.SdkException.BuilderImpl
cause, getCause, getMessage, getNumAttempts, getWritableStackTrace, message, numAttempts, setAttemptCount, setCause, setMessage, setWritableStackTrace, writableStackTrace
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.core.exception.SdkException.Builder
cause, message, numAttempts, writableStackTrace
-
-
-
-
Constructor Detail
-
BuilderImpl
protected BuilderImpl()
-
BuilderImpl
protected BuilderImpl(ApiCallTimeoutException ex)
-
-
Method Detail
-
message
public ApiCallTimeoutException.Builder message(String message)
Description copied from interface:SdkException.Builder
Specifies the details of this exception.- Specified by:
message
in interfaceApiCallTimeoutException.Builder
- Specified by:
message
in interfaceSdkClientException.Builder
- Specified by:
message
in interfaceSdkException.Builder
- Overrides:
message
in classSdkClientException.BuilderImpl
- Parameters:
message
- The details of this exception.- Returns:
- This method for object chaining
-
cause
public ApiCallTimeoutException.Builder cause(Throwable cause)
Description copied from interface:SdkException.Builder
Specifies the exception that caused this exception to occur.- Specified by:
cause
in interfaceApiCallTimeoutException.Builder
- Specified by:
cause
in interfaceSdkClientException.Builder
- Specified by:
cause
in interfaceSdkException.Builder
- Overrides:
cause
in classSdkClientException.BuilderImpl
- Parameters:
cause
- The exception that caused this exception to occur.- Returns:
- This object for method chaining.
-
writableStackTrace
public ApiCallTimeoutException.Builder writableStackTrace(Boolean writableStackTrace)
Description copied from interface:SdkException.Builder
Specifies whether the stack trace in this exception can be written.- Specified by:
writableStackTrace
in interfaceApiCallTimeoutException.Builder
- Specified by:
writableStackTrace
in interfaceSdkClientException.Builder
- Specified by:
writableStackTrace
in interfaceSdkException.Builder
- Overrides:
writableStackTrace
in classSdkClientException.BuilderImpl
- Parameters:
writableStackTrace
- Whether the stack trace can be written.- Returns:
- This method for object chaining
-
numAttempts
public ApiCallTimeoutException.Builder numAttempts(Integer numAttempts)
- Specified by:
numAttempts
in interfaceApiCallTimeoutException.Builder
- Specified by:
numAttempts
in interfaceSdkClientException.Builder
- Specified by:
numAttempts
in interfaceSdkException.Builder
- Overrides:
numAttempts
in classSdkClientException.BuilderImpl
- Parameters:
numAttempts
- The attempt count- Returns:
- This method for object chaining
-
build
public ApiCallTimeoutException build()
Description copied from interface:SdkException.Builder
Creates a newSdkException
with the specified properties.- Specified by:
build
in interfaceApiCallTimeoutException.Builder
- Specified by:
build
in interfaceBuildable
- Specified by:
build
in interfaceSdkClientException.Builder
- Specified by:
build
in interfaceSdkException.Builder
- Overrides:
build
in classSdkClientException.BuilderImpl
- Returns:
- The new
SdkException
.
-
-