comparison rhodecode/lib/exceptions.py @ 3641:b44979649915 beta

recursive forks detach - added API attrs for option to delete or detach forks - deleting repos with attached forks raises an special Exception
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 31 Mar 2013 16:18:09 +0200
parents 7174ee850baa
children 3563bb7b4b82 d9b89874edf9
comparison
equal deleted inserted replaced
3640:4f80df0d45c8 3641:b44979649915
56 56
57 class StatusChangeOnClosedPullRequestError(Exception): 57 class StatusChangeOnClosedPullRequestError(Exception):
58 pass 58 pass
59 59
60 60
61 class AttachedForksError(Exception):
62 pass
63
64
61 class HTTPLockedRC(HTTPClientError): 65 class HTTPLockedRC(HTTPClientError):
62 """ 66 """
63 Special Exception For locked Repos in RhodeCode, the return code can 67 Special Exception For locked Repos in RhodeCode, the return code can
64 be overwritten by _code keyword argument passed into constructors 68 be overwritten by _code keyword argument passed into constructors
65 """ 69 """