10 lines
210 B
Python
10 lines
210 B
Python
|
|
class CourseNotFoundError(Exception):
|
|
""" The course was not found. """
|
|
pass
|
|
|
|
|
|
class CourseStructureNotAvailableError(Exception):
|
|
""" The course structure still needs to be generated. """
|
|
pass
|