| 186 | |
| 187 | |
| 188 | class OverlappingOutputPathsError(DvcException): |
| 189 | def __init__(self, parent, overlapping_out, message): |
| 190 | self.parent = parent |
| 191 | self.overlapping_out = overlapping_out |
| 192 | super().__init__(message) |
| 193 | |
| 194 | |
| 195 | class CheckoutErrorSuggestGit(DvcException): |
no outgoing calls
no test coverage detected