()
| 47 | } |
| 48 | |
| 49 | func (e ErrCode) String() string { |
| 50 | if s, ok := errCodeName[e]; ok { |
| 51 | return s |
| 52 | } |
| 53 | return fmt.Sprintf("unknown error code 0x%x", uint32(e)) |
| 54 | } |
| 55 | |
| 56 | func (e ErrCode) stringToken() string { |
| 57 | if s, ok := errCodeName[e]; ok { |
no outgoing calls