Error implements the error interface.
()
| 113 | |
| 114 | // Error implements the error interface. |
| 115 | func (e Error) Error() string { |
| 116 | return fmt.Sprintf("%s: %s", e.code, e.debug) |
| 117 | } |
| 118 | |
| 119 | var ( |
| 120 | errParser = []string{ |
no outgoing calls
no test coverage detected