Interface: awserr.BatchError
import "../ibm-cos-sdk-go/aws/awserr"
Overview
BatchError is a batch of errors which also wraps lower level errors with code, message, and original errors. Calling Error() will include all errors that occurred in the batch.
Deprecated: Replaced with BatchedErrors. Only defined for backwards compatibility.
Implemented By
Interface Method Summary collapse
-
Code() string
interface
Returns the short phrase depicting the classification of the error.
-
Message() string
interface
Returns the error details message.
-
OrigErrs() []error
interface
Returns the original error if one was set.
Interface Method Details
Code() string
This method is abstract.
Returns the short phrase depicting the classification of the error.
54 |
// File 'aws/awserr/error.go', line 54
|
Message() string
This method is abstract.
Returns the error details message.
57 |
// File 'aws/awserr/error.go', line 57
|
OrigErrs() []error
This method is abstract.
Returns the original error if one was set. Nil is returned if not set.
60 |
// File 'aws/awserr/error.go', line 60
|