##// END OF EJS Templates
fixed issue with displaying repos in groups view (without lightweight dashboard), added tests for this case
fixed issue with displaying repos in groups view (without lightweight dashboard), added tests for this case

File last commit:

r2007:324ac367 beta
r3167:87258a13 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