| 85 | } |
| 86 | |
| 87 | struct ArtifactError { |
| 88 | stage: &'static str, |
| 89 | code: Option<String>, |
| 90 | message: String, |
| 91 | } |
| 92 | |
| 93 | impl ArtifactError { |
| 94 | fn new(stage: &'static str, message: impl Into<String>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected