argoerr is the internal implementation of an Argo error which wraps the error from pkg/errors
| 29 | |
| 30 | // argoerr is the internal implementation of an Argo error which wraps the error from pkg/errors |
| 31 | type argoerr struct { |
| 32 | code string |
| 33 | message string |
| 34 | err error |
| 35 | } |
| 36 | |
| 37 | // New returns an error with the supplied message. |
| 38 | // New also records the stack trace at the point it was called. |
nothing calls this directly
no outgoing calls
no test coverage detected