Files
edx-platform/lms/djangoapps/course_structure_api/v0/errors.py
2015-05-12 16:32:00 -04:00

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