comparison rhodecode/lib/exceptions.py @ 3788:d9b89874edf9 beta

UserGroup on UserGroup permissions implementation. - user group can have another usergroup assigned - it's impossible to assign usergroup on the same usergroup
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 23 Apr 2013 02:18:31 +0200
parents b44979649915
children dc4644865e8b
comparison
equal deleted inserted replaced
3787:a3b1016855f8 3788:d9b89874edf9
60 60
61 class AttachedForksError(Exception): 61 class AttachedForksError(Exception):
62 pass 62 pass
63 63
64 64
65 class RepoGroupAssignmentError(Exception):
66 pass
67
68
65 class HTTPLockedRC(HTTPClientError): 69 class HTTPLockedRC(HTTPClientError):
66 """ 70 """
67 Special Exception For locked Repos in RhodeCode, the return code can 71 Special Exception For locked Repos in RhodeCode, the return code can
68 be overwritten by _code keyword argument passed into constructors 72 be overwritten by _code keyword argument passed into constructors
69 """ 73 """