Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/polls/exceptions.py
blob: 32262a1828515a644bfe8d1d76ca59b1887207e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
class ValidationError(Exception):
    pass


class UniqueNameError(Exception):
    pass


class ReadOnly(Exception):
    """Exception when trying to write a read only object."""
    pass