exceptions.py 195 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
"""
Exceptions for the course gating feature
"""


class GatingValidationError(Exception):
    """
    Exception class for validation errors related to course gating information
    """
    pass