exceptions.py 195 Bytes
"""
Exceptions for the course gating feature
"""


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