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

request.ErrInvalidParams

Interface Method Summary collapse

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

Code() string

Message() string

This method is abstract.

Returns the error details message.



57
// File 'aws/awserr/error.go', line 57

Message() string

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

OrigErrs() []error