()
| 54 | } |
| 55 | |
| 56 | func (e ErrCode) stringToken() string { |
| 57 | if s, ok := errCodeName[e]; ok { |
| 58 | return s |
| 59 | } |
| 60 | return fmt.Sprintf("ERR_UNKNOWN_%d", uint32(e)) |
| 61 | } |
| 62 | |
| 63 | // ConnectionError is an error that results in the termination of the |
| 64 | // entire connection. |
no outgoing calls
no test coverage detected