Beispiel #1
0
 def __init__(self, cycle):
     desc = []
     for n in  cycle:
         desc.append("  " + str(n) + " ->")
     ExRunException.__init__(self, "cycle detected:\n" + "\n".join(desc))
Beispiel #2
0
 def __init__(self, cycle):
     desc = []
     for n in cycle:
         desc.append("  " + str(n) + " ->")
     ExRunException.__init__(self, "cycle detected:\n" + "\n".join(desc))