Error defines a custom error struct, containing and MS Graph error code and a textual error message
| 14 | |
| 15 | // Error defines a custom error struct, containing and MS Graph error code and a textual error message |
| 16 | type Error struct { |
| 17 | errorCode ErrorCode |
| 18 | msg string |
| 19 | origin ErrorOrigin |
| 20 | } |
| 21 | |
| 22 | // ErrorOrigin gives information about where the error originated |
| 23 | type ErrorOrigin int |
nothing calls this directly
no outgoing calls
no test coverage detected