add autodesign routes

Signed-off-by: manuedelf <59697943+edelfour@users.noreply.github.com>
This commit is contained in:
manuedelf
2021-01-25 23:11:05 +01:00
committed by EstherLerouzic
parent f67e9c4914
commit 459a82150b
9 changed files with 133 additions and 44 deletions

View File

@@ -0,0 +1,14 @@
# coding: utf-8
class PathComputationError(Exception):
""" Exception raise for path computation error error
Attributes:
message -- explanation of the error
"""
def __init__(self, message):
self.message = message
def __str__(self):
return self.message