Kind returns the error kind for fast dispatch
()
| 107 | |
| 108 | // Kind returns the error kind for fast dispatch |
| 109 | func (e Error) Kind() ErrorKind { |
| 110 | return e.kind |
| 111 | } |
| 112 | |
| 113 | func (e Error) reverseStackString() string { |
| 114 | if len(e.stack) == 0 { |
no outgoing calls