Cimmitting missing files

This commit is contained in:
Zvonimir Sabljic
2023-09-13 09:14:59 +02:00
parent 0619b53d18
commit e1e483c5f2
3 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
class TooDeepRecursionError(Exception):
def __init__(self, message='Recursion is too deep!'):
self.message = message
super().__init__(message)