comparison rhodecode/lib/exceptions.py @ 3840:dc4644865e8b beta

Implemented simple gist functionality ref #530. - creation of public/private gists with given lifetime - rhodecode-gist CLI for quick gist creation
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 11 May 2013 20:24:02 +0200
parents d9b89874edf9
children 5293d4bbb1ea
comparison
equal deleted inserted replaced
3839:9dec870411e0 3840:dc4644865e8b
64 64
65 class RepoGroupAssignmentError(Exception): 65 class RepoGroupAssignmentError(Exception):
66 pass 66 pass
67 67
68 68
69 class NonRelativePathError(Exception):
70 pass
71
72
69 class HTTPLockedRC(HTTPClientError): 73 class HTTPLockedRC(HTTPClientError):
70 """ 74 """
71 Special Exception For locked Repos in RhodeCode, the return code can 75 Special Exception For locked Repos in RhodeCode, the return code can
72 be overwritten by _code keyword argument passed into constructors 76 be overwritten by _code keyword argument passed into constructors
73 """ 77 """