exceptions.py 244 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
"""
Exception classes used in lms/courseware.
"""


class Redirect(Exception):
    """
    Exception class that requires redirecting to a URL.
    """
    def __init__(self, url):
        super(Redirect, self).__init__()
        self.url = url