| 31 | |
| 32 | |
| 33 | class FileIsGitIgnored(DvcException): |
| 34 | def __init__(self, path, pipeline_file=False): |
| 35 | super().__init__( |
| 36 | "{}'{}' is git-ignored.".format( |
| 37 | "bad DVC file name " if pipeline_file else "", path |
| 38 | ) |
| 39 | ) |
| 40 | |
| 41 | |
| 42 | class ParametrizedDumpError(DvcException): |
no outgoing calls
no test coverage detected