Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SliceErrors ¶ added in v0.1.0
type SliceErrors []error
SliceErrors is returned by many of the processes here. It represents a list of errors. Since concurrency is involved with running multiple tasks at once, it is quite possible that multiple failures may occur simultaneously. This error implementation collects these errors into a super-error.
func (SliceErrors) Error ¶ added in v0.1.0
func (e SliceErrors) Error() string
Error returns all the errors inside it as a string.
func (SliceErrors) Unwrap ¶ added in v0.1.0
func (e SliceErrors) Unwrap() []error
Unwrap returns all the inner errors.
Click to show internal directories.
Click to hide internal directories.