11 lines
245 B
Python
11 lines
245 B
Python
"""
|
|
Exceptions for the course gating feature
|
|
"""
|
|
|
|
|
|
class GatingValidationError(Exception):
|
|
"""
|
|
Exception class for validation errors related to course gating information
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|