wrapperError satisfies the error interface.
| 13 | |
| 14 | // wrapperError satisfies the error interface. |
| 15 | type wrapperError struct { |
| 16 | msg string |
| 17 | detail []string |
| 18 | data map[string]interface{} |
| 19 | stack []uintptr |
| 20 | root error |
| 21 | } |
| 22 | |
| 23 | // It satisfies the error interface. |
| 24 | func (e wrapperError) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected