/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 bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-01 07:30:00 UTC
  • mfrom: (2220.2.49 tags)
  • Revision ID: pqm@pqm.ubuntu.com-20070301073000-0bfe1394fee5e712
(mbp) tags in branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1781
1781
    def __init__(self, name):
1782
1782
        BzrError.__init__(self)
1783
1783
        self.name = name
 
1784
 
 
1785
 
 
1786
class NoSuchTag(BzrError):
 
1787
 
 
1788
    _fmt = "No such tag: %(tag_name)s"
 
1789
 
 
1790
    def __init__(self, tag_name):
 
1791
        self.tag_name = tag_name
 
1792
 
 
1793
 
 
1794
class TagsNotSupported(BzrError):
 
1795
 
 
1796
    _fmt = "Tags not supported by %(branch)s; you may be able to use bzr upgrade."
 
1797
 
 
1798
    def __init__(self, branch):
 
1799
        self.branch = branch
 
1800
 
 
1801
        
 
1802
class TagAlreadyExists(BzrError):
 
1803
 
 
1804
    _fmt = "Tag %(tag_name)s already exists."
 
1805
 
 
1806
    def __init__(self, tag_name):
 
1807
        self.tag_name = tag_name