exceptions.py 292 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
""" Common Purpose Errors"""
from django.core.exceptions import ObjectDoesNotExist


class CourseNotFoundError(ObjectDoesNotExist):
    """ Course was not found. """
    pass


class PageNotFoundError(ObjectDoesNotExist):
    """ Page was not found. Used for paginated endpoint. """
    pass