Error represents the specific error returned to user
| 49 | |
| 50 | // Error represents the specific error returned to user |
| 51 | type Error struct { |
| 52 | Category ErrorCategory |
| 53 | SubCategory int32 |
| 54 | Index int32 |
| 55 | HttpStatusCode int |
| 56 | Message string |
| 57 | BaseError []error |
| 58 | Context any |
| 59 | } |
| 60 | |
| 61 | type MultiErrors struct { |
| 62 | errors []error |
nothing calls this directly
no outgoing calls
no test coverage detected