11 lines
195 B
Python
11 lines
195 B
Python
"""
|
|
Exceptions for the course gating feature
|
|
"""
|
|
|
|
|
|
class GatingValidationError(Exception):
|
|
"""
|
|
Exception class for validation errors related to course gating information
|
|
"""
|
|
pass
|