fix golint issues in core/errorx (#480)

master
Kevin Wan 4 years ago committed by GitHub
parent 2446d8a668
commit 7472d1e70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@ package errorx
import "bytes" import "bytes"
type ( type (
// A BatchError is an error that can hold multiple errors.
BatchError struct { BatchError struct {
errs errorArray errs errorArray
} }
@ -10,12 +11,14 @@ type (
errorArray []error errorArray []error
) )
// Add adds err to be.
func (be *BatchError) Add(err error) { func (be *BatchError) Add(err error) {
if err != nil { if err != nil {
be.errs = append(be.errs, err) be.errs = append(be.errs, err)
} }
} }
// Err returns an error that represents all errors.
func (be *BatchError) Err() error { func (be *BatchError) Err() error {
switch len(be.errs) { switch len(be.errs) {
case 0: case 0:
@ -27,10 +30,12 @@ func (be *BatchError) Err() error {
} }
} }
// NotNil checks if any error inside.
func (be *BatchError) NotNil() bool { func (be *BatchError) NotNil() bool {
return len(be.errs) > 0 return len(be.errs) > 0
} }
// Error returns a string that represents inside errors.
func (ea errorArray) Error() string { func (ea errorArray) Error() string {
var buf bytes.Buffer var buf bytes.Buffer

@ -1,5 +1,6 @@
package errorx package errorx
// Chain runs funs one by one until an error occurred.
func Chain(fns ...func() error) error { func Chain(fns ...func() error) error {
for _, fn := range fns { for _, fn := range fns {
if err := fn(); err != nil { if err := fn(); err != nil {

Loading…
Cancel
Save