Thrown if arguments are invalid.
| 19 | |
| 20 | |
| 21 | class InvalidArgumentError(ValueError, DvcException): |
| 22 | """Thrown if arguments are invalid.""" |
| 23 | |
| 24 | def __init__(self, msg, *args): |
| 25 | self.msg = msg |
| 26 | super().__init__(msg, *args) |
| 27 | |
| 28 | |
| 29 | class OutputDuplicationError(DvcException): |
no outgoing calls
no test coverage detected