exceptions.py 320 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
"""
Specialized exceptions for the Survey Djangoapp
"""


class SurveyFormNotFound(Exception):
    """
    Thrown when a SurveyForm is not found in the database
    """
    pass


class SurveyFormNameAlreadyExists(Exception):
    """
    Thrown when a SurveyForm is created but that name already exists
    """
    pass