(id uint32, code ErrCode)
| 82 | var errFromPeer = errors.New("received from peer") |
| 83 | |
| 84 | func streamError(id uint32, code ErrCode) StreamError { |
| 85 | return StreamError{StreamID: id, Code: code} |
| 86 | } |
| 87 | |
| 88 | func (e StreamError) Error() string { |
| 89 | if e.Cause != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…