예제 #1
0
파일: errors.py 프로젝트: pv-bull/sequencer
 def __init__(self, bad_dep):
     self.bad_dep = bad_dep
     msg = "Explicit dependency" + \
         " %s is already implicit (in a sequence)" % bad_dep
     SequencerError.__init__(self, msg)
예제 #2
0
파일: errors.py 프로젝트: pv-bull/sequencer
 def __init__(self, unknown_deps):
     self.unknown_deps = unknown_deps
     msg = "Unknown explicit dependencies: %s " % unknown_deps
     SequencerError.__init__(self, msg)
예제 #3
0
파일: errors.py 프로젝트: pv-bull/sequencer
 def __init__(self, rule, dep):
     self.rule = rule
     msg = "Unknown dependency '%s' in rule '%s'" % (dep, self.rule)
     SequencerError.__init__(self, msg)