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