mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-07-03 12:14:57 +02:00
4 lines
150 B
Python
4 lines
150 B
Python
class CourseUnavailable(Exception):
|
|
def __init__(self, message:str="Error in course"):
|
|
self.message = message
|
|
super().__init__(self.message) |