/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: Jonathan Riddell
  • Date: 2011-08-30 09:41:24 UTC
  • mfrom: (6110 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6131.
  • Revision ID: jriddell@canonical.com-20110830094124-z3n3pc12wgg2rbc9
mergeĀ inĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3324
3324
    def __init__(self, source, target):
3325
3325
        self.source = source
3326
3326
        self.target = target
 
3327
 
 
3328
 
 
3329
class HpssVfsRequestNotAllowed(BzrError):
 
3330
 
 
3331
    _fmt = ("VFS requests over the smart server are not allowed. Encountered: "
 
3332
            "%(method)s, %(arguments)s.")
 
3333
 
 
3334
    def __init__(self, method, arguments):
 
3335
        self.method = method
 
3336
        self.arguments = arguments