Initial commit

This commit is contained in:
Tools
2024-05-04 16:18:49 +02:00
commit 332bbe2c86
32 changed files with 1876 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
class Archive(Exception):
def __init__(self, source):
self.source = source
class ArchiveFolderSourceNotFound(Archive):
def __str__(self):
return f'Can\'t find the folder source "{self.source}".'
class ContainerErrorTest(Exception):
""" Failed to generate the test """