mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-07-01 03:34:57 +02:00
9 lines
200 B
Python
9 lines
200 B
Python
"""
|
|
Illegal Action Exception
|
|
"""
|
|
|
|
class IllegalAction(Exception):
|
|
"""Illegal Action Exception"""
|
|
def __init__(self, message: str = ""):
|
|
super().__init__(f"Illegal action: {message}")
|