ErrClose is returned by the Close function, when the argument passed to it was a slice of kites.
| 447 | // ErrClose is returned by the Close function, when the argument passed |
| 448 | // to it was a slice of kites. |
| 449 | type ErrClose struct { |
| 450 | // Errs has always length of the slice passed to the Close function. |
| 451 | // It contains at least one non-nil error. |
| 452 | Errs []error |
| 453 | } |
| 454 | |
| 455 | // Error implements the built-in error interface. |
| 456 | func (err *ErrClose) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected