This returns a string with all available error information, including inner errors that are wrapped by this errors.
()
| 77 | // This returns a string with all available error information, including inner |
| 78 | // errors that are wrapped by this errors. |
| 79 | func (e *baseError) Error() string { |
| 80 | return extractFullErrorMessage(e, true) |
| 81 | } |
| 82 | |
| 83 | // Implements DropboxError interface. |
| 84 | func (e *baseError) GetMessage() string { |
nothing calls this directly
no test coverage detected