Base class for all dvc exceptions.
| 10 | |
| 11 | |
| 12 | class DvcException(Exception): # noqa: N818 |
| 13 | """Base class for all dvc exceptions.""" |
| 14 | |
| 15 | def __init__(self, msg, *args): |
| 16 | assert msg |
| 17 | self.msg = msg |
| 18 | super().__init__(msg, *args) |
| 19 | |
| 20 | |
| 21 | class InvalidArgumentError(ValueError, DvcException): |
no outgoing calls