예제 #1
0
파일: run.py 프로젝트: benzei/dvc
 def __init__(self, msg):
     DvcException.__init__(self, 'Run error: {}'.format(msg))
예제 #2
0
 def __init__(self, msg):
     DvcException.__init__(self, msg)
예제 #3
0
 def __init__(self, msg):
     DvcException.__init__(self, 'State file error: {}'.format(msg))
예제 #4
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Repository change error: {}'.format(msg))
예제 #5
0
파일: import_file.py 프로젝트: guptam/dvc
 def __init__(self, msg):
     DvcException.__init__(self, 'Import file: {}'.format(msg))
예제 #6
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Config file error: {}'.format(msg))
예제 #7
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Data sync error: {}'.format(msg))
예제 #8
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Traverse file tree error: {}'.format(msg))
예제 #9
0
 def __init__(self, file, data_dir):
     DvcException.__init__(
         self,
         'Data file location error: the file "{}" has to be in the data directory "{}"'
         .format(file, data_dir))