##// END OF EJS Templates
access control: fix owner checks - they were always true...
access control: fix owner checks - they were always true The lambda expressions seems to be left over from something else. They were no longer executed and thus always evaluated to true. Some of the functions also failed if they were executed.

File last commit:

r2007:324ac367 beta
r3141:a45191e7 beta
Show More
exceptions.py
93 lines | 1.2 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
vcs.exceptions
~~~~~~~~~~~~~~
Custom exceptions module
:created_on: Apr 8, 2010
:copyright: (c) 2010-2011 by Marcin Kuzminski, Lukasz Balcerzak.
"""
class VCSError(Exception):
pass
class RepositoryError(VCSError):
pass
class EmptyRepositoryError(RepositoryError):
pass
class TagAlreadyExistError(RepositoryError):
pass
class TagDoesNotExistError(RepositoryError):
pass
class BranchAlreadyExistError(RepositoryError):
pass
class BranchDoesNotExistError(RepositoryError):
pass
class ChangesetError(RepositoryError):
pass
class ChangesetDoesNotExistError(ChangesetError):
pass
class CommitError(RepositoryError):
pass
class NothingChangedError(CommitError):
pass
class NodeError(VCSError):
pass
class RemovedFileNodeError(NodeError):
pass
class NodeAlreadyExistsError(CommitError):
pass
class NodeAlreadyChangedError(CommitError):
pass
class NodeDoesNotExistError(CommitError):
pass
class NodeNotChangedError(CommitError):
pass
class NodeAlreadyAddedError(CommitError):
pass
class NodeAlreadyRemovedError(CommitError):
pass
class ImproperArchiveTypeError(VCSError):
pass
class CommandError(VCSError):
pass