/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

  • Committer: Jelmer Vernooij
  • Date: 2008-12-25 01:28:00 UTC
  • mto: (0.200.144 dulwich)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20081225012800-96iswmhsbn3wlyz6
Update copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""A grouping of Exceptions for bzr-git"""
18
18
 
19
19
from bzrlib import errors as bzr_errors
20
 
from dulwich import errors as git_errors
21
20
 
22
21
 
23
22
class BzrGitError(bzr_errors.BzrError):
33
32
        self.command = command
34
33
        self.returncode = returncode
35
34
        self.stderr = stderr
36
 
 
37
 
 
38
 
class NoSuchRef(BzrGitError):
39
 
    """Raised when a ref can not be found.""" 
40
 
 
41
 
    _fmt = "The ref %(ref)s was not found."
42
 
    
43
 
    def __init__(self, ref):
44
 
        self.ref = ref