Beispiel #1
0
Datei: run.py Projekt: benzei/dvc
 def __init__(self, msg):
     DvcException.__init__(self, 'Run error: {}'.format(msg))
Beispiel #2
0
 def __init__(self, msg):
     DvcException.__init__(self, msg)
Beispiel #3
0
 def __init__(self, msg):
     DvcException.__init__(self, 'State file error: {}'.format(msg))
Beispiel #4
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Repository change error: {}'.format(msg))
Beispiel #5
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Import file: {}'.format(msg))
Beispiel #6
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Config file error: {}'.format(msg))
Beispiel #7
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Data sync error: {}'.format(msg))
Beispiel #8
0
 def __init__(self, msg):
     DvcException.__init__(self, 'Traverse file tree error: {}'.format(msg))
Beispiel #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))