~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-27 06:47:50 UTC
  • mfrom: (4294.2.12 push.roundtrips)
  • Revision ID: pqm@pqm.ubuntu.com-20090427064750-e9obd6h83omt86ps
(robertc) Reduce roundtrips needed to push a new branch by coalescing
        many steps of the initialisation process. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2960
2960
        BzrError.__init__(self, invalid_id=invalid_id)
2961
2961
 
2962
2962
 
 
2963
class JailBreak(BzrError):
 
2964
 
 
2965
    _fmt = "An attempt to access a url outside the server jail was made: '%(url)s'."
 
2966
 
 
2967
    def __init__(self, url):
 
2968
        BzrError.__init__(self, url=url)
 
2969
 
 
2970
 
2963
2971
class UserAbort(BzrError):
2964
2972
 
2965
2973
    _fmt = 'The user aborted the operation.'