Struct: s3manager.Errors

import "../ibm-cos-sdk-go/service/s3/s3manager"

Implemented Interfaces

s3crypto.Cipher, s3manager.ReadSeekerWriteTo, s3manager.WriterReadFrom

Method Summary collapse

Method Details

func (errs Errors) Error() string



34
35
36
37
38
39
40
41
42
43
// File 'service/s3/s3manager/batch.go', line 34

func (errs Errors) Error() string { buf := bytes.NewBuffer(nil) for i, err := range errs { buf.WriteString(err.Error()) if i+1 < len(errs) { buf.WriteString("\n") } } return buf.String() }