~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to djangoratings/exceptions.py

  • Committer: franku
  • Date: 2016-12-13 18:28:51 UTC
  • mto: This revision was merged to the branch mainline in revision 443.
  • Revision ID: somal@arcor.de-20161213182851-bo5ebf8pdvw5beua
run the script

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
class InvalidRating(ValueError): pass
2
 
class AuthRequired(TypeError): pass
3
 
class CannotChangeVote(Exception): pass
4
 
class CannotDeleteVote(Exception): pass
5
 
class IPLimitReached(Exception): pass
 
 
b'\\ No newline at end of file'
 
1
class InvalidRating(ValueError):
 
2
    pass
 
3
 
 
4
 
 
5
class AuthRequired(TypeError):
 
6
    pass
 
7
 
 
8
 
 
9
class CannotChangeVote(Exception):
 
10
    pass
 
11
 
 
12
 
 
13
class CannotDeleteVote(Exception):
 
14
    pass
 
15
 
 
16
 
 
17
class IPLimitReached(Exception):
 
18
    pass