Interface SdkException.Builder
-
- All Superinterfaces:
software.amazon.awssdk.utils.builder.Buildable
- All Known Subinterfaces:
AbortedException.Builder,ApiCallAttemptTimeoutException.Builder,ApiCallTimeoutException.Builder,Crc32MismatchException.Builder,EndpointDiscoveryFailedException.Builder,NonRetryableException.Builder,RetryableException.Builder,SdkClientException.Builder,SdkServiceException.Builder
- All Known Implementing Classes:
AbortedException.BuilderImpl,ApiCallAttemptTimeoutException.BuilderImpl,ApiCallTimeoutException.BuilderImpl,Crc32MismatchException.BuilderImpl,EndpointDiscoveryFailedException.BuilderImpl,NonRetryableException.BuilderImpl,RetryableException.BuilderImpl,SdkClientException.BuilderImpl,SdkException.BuilderImpl,SdkServiceException.BuilderImpl
- Enclosing class:
- SdkException
public static interface SdkException.Builder extends software.amazon.awssdk.utils.builder.Buildable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SdkExceptionbuild()Creates a newSdkExceptionwith the specified properties.Throwablecause()The exception that caused this exception to occur.SdkException.Buildercause(Throwable cause)Specifies the exception that caused this exception to occur.Stringmessage()The details of this exception.SdkException.Buildermessage(String message)Specifies the details of this exception.BooleanwritableStackTrace()Whether the stack trace in this exception can be written.SdkException.BuilderwritableStackTrace(Boolean writableStackTrace)Specifies whether the stack trace in this exception can be written.
-
-
-
Method Detail
-
cause
SdkException.Builder cause(Throwable cause)
Specifies the exception that caused this exception to occur.- Parameters:
cause- The exception that caused this exception to occur.- Returns:
- This object for method chaining.
-
cause
Throwable cause()
The exception that caused this exception to occur.- Returns:
- The exception that caused this exception to occur.
-
message
SdkException.Builder message(String message)
Specifies the details of this exception.- Parameters:
message- The details of this exception.- Returns:
- This method for object chaining
-
message
String message()
The details of this exception.- Returns:
- Details of this exception.
-
writableStackTrace
SdkException.Builder writableStackTrace(Boolean writableStackTrace)
Specifies whether the stack trace in this exception can be written.- Parameters:
writableStackTrace- Whether the stack trace can be written.- Returns:
- This method for object chaining
-
writableStackTrace
Boolean writableStackTrace()
Whether the stack trace in this exception can be written.
-
build
SdkException build()
Creates a newSdkExceptionwith the specified properties.- Specified by:
buildin interfacesoftware.amazon.awssdk.utils.builder.Buildable- Returns:
- The new
SdkException.
-
-