~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-13 01:50:16 UTC
  • mto: (1587.1.6 bound-branches)
  • mto: This revision was merged to the branch mainline in revision 1590.
  • Revision ID: john@arbash-meinel.com-20051113015016-6ca45e7115ab63f6
Cleaned up tests and code, all bound branch tests succeed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
 
208
208
class CannotBind(BzrNewError):
209
209
    """Cannot bind: %(msg)s"""
 
210
    def __init__(self, msg):
 
211
        BzrNewError.__init__(self)
 
212
        self.msg = msg
 
213
 
 
214
class CannotInstallRevisions(BzrNewError):
 
215
    """Cannot install revisions: %(msg)s"""
 
216
    def __init__(self, msg):
 
217
        BzrNewError.__init__(self)
 
218
        self.msg = msg
210
219
 
211
220
class NoSuchRevision(BzrError):
212
221
    def __init__(self, branch, revision):