()
| 411 | type MultiError []error |
| 412 | |
| 413 | func (m MultiError) Error() string { |
| 414 | var s []string |
| 415 | for _, e := range m { |
| 416 | s = append(s, e.Error()) |
| 417 | } |
| 418 | return strings.Join(s, "; ") |
| 419 | } |
| 420 | |
| 421 | // Return the error from a Go channel monitoring the closing of an AMQP channel. |
| 422 | // closec must have been registered via Channel.NotifyClose. |
no outgoing calls