Creating coordinator logics, reworking the main function

This commit is contained in:
Zoe Roux
2020-11-08 19:16:09 +01:00
parent 25585be872
commit 3e2c2846d0
11 changed files with 89 additions and 19 deletions
+7
View File
@@ -0,0 +1,7 @@
class ArgumentError(Exception):
def __init__(self, msg, flag=None):
self.msg = msg
self.flag = flag
def __str__(self):
return self.msg
+1
View File
@@ -0,0 +1 @@
from .ArgumentError import ArgumentError