Files
Awais Qureshi 44576ce3f6 BOM-2282
Apply pylint-amnesty.
2021-02-01 19:27:15 +05:00

19 lines
532 B
Python

"""
Exception classes used by Instructor tasks.
"""
class UpdateProblemModuleStateError(Exception):
"""
Error signaling a fatal condition while updating problem modules.
Used when the current module cannot be processed and no more
modules should be attempted.
"""
pass # lint-amnesty, pylint: disable=unnecessary-pass
class DuplicateTaskException(Exception):
"""Exception indicating that a task already exists or has already completed."""
pass # lint-amnesty, pylint: disable=unnecessary-pass