~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2012-09-19 07:58:27 UTC
  • mfrom: (6437.63.9 2.5)
  • mto: This revision was merged to the branch mainline in revision 6563.
  • Revision ID: john@arbash-meinel.com-20120919075827-36b2b042kiaps0d3
Merge bzr-2.5.2 into trunk to get the fixes for ConnectionReset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2013, 2016 Canonical Ltd
 
1
# Copyright (C) 2005-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
1686
1686
        TransportError.__init__(self, msg, orig_error=orig_error)
1687
1687
 
1688
1688
 
 
1689
class CertificateError(TransportError):
 
1690
 
 
1691
    _fmt = "Certificate error: %(error)s"
 
1692
 
 
1693
    def __init__(self, error):
 
1694
        self.error = error
 
1695
 
 
1696
 
1689
1697
class InvalidHttpRange(InvalidHttpResponse):
1690
1698
 
1691
1699
    _fmt = "Invalid http range %(range)r for %(path)s: %(msg)s"
3242
3250
 
3243
3251
class ExpandingUnknownOption(BzrError):
3244
3252
 
3245
 
    _fmt = 'Option "%(name)s" is not defined while expanding "%(string)s".'
 
3253
    _fmt = 'Option %(name)s is not defined while expanding "%(string)s".'
3246
3254
 
3247
3255
    def __init__(self, name, string):
3248
3256
        self.name = name
3249
3257
        self.string = string
3250
3258
 
3251
3259
 
3252
 
class IllegalOptionName(BzrError):
3253
 
 
3254
 
    _fmt = 'Option "%(name)s" is not allowed.'
3255
 
 
3256
 
    def __init__(self, name):
3257
 
        self.name = name
3258
 
 
3259
 
 
3260
3260
class NoCompatibleInter(BzrError):
3261
3261
 
3262
3262
    _fmt = ('No compatible object available for operations from %(source)r '