Files
edx-platform/lms/djangoapps/grades/exceptions.py
2024-08-29 18:47:54 +05:00

12 lines
306 B
Python

"""
Custom exceptions raised by grades.
"""
class ScoreNotFoundError(IOError):
"""
Subclass of IOError to indicate the staff has not yet graded the problem or
the database has not yet committed the data we're trying to find.
"""
pass # lint-amnesty, pylint: disable=unnecessary-pass