Files
edx-platform/lms/djangoapps/grades/exceptions.py
2017-04-24 17:58:18 -04:00

12 lines
215 B
Python

"""
Custom exceptions raised by grades.
"""
class DatabaseNotReadyError(IOError):
"""
Subclass of IOError to indicate the database has not yet committed
the data we're trying to find.
"""
pass