/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to errors.py

Add exception for ghost revisions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
 
17
18
"""A grouping of Exceptions for bzr-git"""
18
19
 
 
20
 
19
21
from dulwich import errors as git_errors
20
22
 
21
23
from bzrlib import errors as bzr_errors
22
24
 
 
25
 
23
26
class BzrGitError(bzr_errors.BzrError):
24
27
    """The base-level exception for bzr-git errors."""
25
28
 
59
62
 
60
63
class GitSmartRemoteNotSupported(bzr_errors.BzrError):
61
64
    _fmt = "This operation is not supported by the Git smart server protocol."
 
65
 
 
66
 
 
67
class GhostRevision(bzr_errors.NoSuchRevision):
 
68
    _fmt = "Revision %(revision)s is a ghost; unable to represent in Git."""