RawData returns the unformatted error data (could be an internal error, text, etc.)
()
| 48 | |
| 49 | // RawData returns the unformatted error data (could be an internal error, text, etc.) |
| 50 | func (e *ApiError) RawData() any { |
| 51 | return e.rawData |
| 52 | } |
| 53 | |
| 54 | // Is reports whether the current ApiError wraps the target. |
| 55 | func (e *ApiError) Is(target error) bool { |
no outgoing calls