Conformed to naming conventions. Pepped the SHIT out of the code. Will reflect in documentation now.

This commit is contained in:
2024-04-10 18:43:03 +02:00
parent 11864cae6b
commit 78aade7c8c
13 changed files with 513 additions and 404 deletions

View File

@ -0,0 +1,8 @@
"""
Illegal Action Exception
"""
class IllegalAction(Exception):
"""Illegal Action Exception"""
def __init__(self, message: str = ""):
super().__init__(f"Illegal action: {message}")