Interface ApiCallTimeoutException.Builder
- 
- All Superinterfaces:
 Buildable,SdkClientException.Builder,SdkException.Builder
- All Known Implementing Classes:
 ApiCallTimeoutException.BuilderImpl
- Enclosing class:
 - ApiCallTimeoutException
 
public static interface ApiCallTimeoutException.Builder extends SdkClientException.Builder
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiCallTimeoutExceptionbuild()Creates a newSdkExceptionwith the specified properties.ApiCallTimeoutException.Buildercause(Throwable cause)Specifies the exception that caused this exception to occur.ApiCallTimeoutException.Buildermessage(String message)Specifies the details of this exception.ApiCallTimeoutException.BuildernumAttempts(Integer numAttempts)ApiCallTimeoutException.BuilderwritableStackTrace(Boolean writableStackTrace)Specifies whether the stack trace in this exception can be written.- 
Methods inherited from interface software.amazon.awssdk.core.exception.SdkException.Builder
cause, message, numAttempts, writableStackTrace 
 - 
 
 - 
 
- 
- 
Method Detail
- 
message
ApiCallTimeoutException.Builder message(String message)
Description copied from interface:SdkException.BuilderSpecifies the details of this exception.- Specified by:
 messagein interfaceSdkClientException.Builder- Specified by:
 messagein interfaceSdkException.Builder- Parameters:
 message- The details of this exception.- Returns:
 - This method for object chaining
 
 
- 
cause
ApiCallTimeoutException.Builder cause(Throwable cause)
Description copied from interface:SdkException.BuilderSpecifies the exception that caused this exception to occur.- Specified by:
 causein interfaceSdkClientException.Builder- Specified by:
 causein interfaceSdkException.Builder- Parameters:
 cause- The exception that caused this exception to occur.- Returns:
 - This object for method chaining.
 
 
- 
writableStackTrace
ApiCallTimeoutException.Builder writableStackTrace(Boolean writableStackTrace)
Description copied from interface:SdkException.BuilderSpecifies whether the stack trace in this exception can be written.- Specified by:
 writableStackTracein interfaceSdkClientException.Builder- Specified by:
 writableStackTracein interfaceSdkException.Builder- Parameters:
 writableStackTrace- Whether the stack trace can be written.- Returns:
 - This method for object chaining
 
 
- 
numAttempts
ApiCallTimeoutException.Builder numAttempts(Integer numAttempts)
- Specified by:
 numAttemptsin interfaceSdkClientException.Builder- Specified by:
 numAttemptsin interfaceSdkException.Builder- Parameters:
 numAttempts- The attempt count- Returns:
 - This method for object chaining
 
 
- 
build
ApiCallTimeoutException build()
Description copied from interface:SdkException.BuilderCreates a newSdkExceptionwith the specified properties.- Specified by:
 buildin interfaceBuildable- Specified by:
 buildin interfaceSdkClientException.Builder- Specified by:
 buildin interfaceSdkException.Builder- Returns:
 - The new 
SdkException. 
 
 - 
 
 -