Documentation ¶ Index ¶ type Error func (err *Error) Add(another error) func (err *Error) Addf(msg string, args ...interface{}) func (err *Error) As(what interface{}) bool func (err *Error) Error() string func (err *Error) Is(what error) bool func (err *Error) ToError() error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Error ¶ type Error struct { Errors []error } func (*Error) Add ¶ func (err *Error) Add(another error) func (*Error) Addf ¶ func (err *Error) Addf(msg string, args ...interface{}) func (*Error) As ¶ func (err *Error) As(what interface{}) bool func (*Error) Error ¶ func (err *Error) Error() string func (*Error) Is ¶ func (err *Error) Is(what error) bool Is checks all errors in err against what using errors.Is. func (*Error) ToError ¶ func (err *Error) ToError() error Source Files ¶ View all Source files multierr.go Click to show internal directories. Click to hide internal directories.