Error represents an artifact operation error
| 59 | |
| 60 | // Error represents an artifact operation error |
| 61 | type Error struct { |
| 62 | Code ErrorCode |
| 63 | Message string |
| 64 | Cause error |
| 65 | } |
| 66 | |
| 67 | // Error implements the error interface |
| 68 | func (e *Error) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected