Beispiel #1
0
 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)
Beispiel #2
0
 def __init__(self, unknown_deps):
     self.unknown_deps = unknown_deps
     msg = "Unknown explicit dependencies: %s " % unknown_deps
     SequencerError.__init__(self, msg)
Beispiel #3
0
 def __init__(self, rule, dep):
     self.rule = rule
     msg = "Unknown dependency '%s' in rule '%s'" % (dep, self.rule)
     SequencerError.__init__(self, msg)