~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-29 20:20:38 UTC
  • mfrom: (1951.1.12 sftp refactoring 2)
  • mto: This revision was merged to the branch mainline in revision 1969.
  • Revision ID: john@arbash-meinel.com-20060829202038-ea1bede06b14bec8
[merge] Andrew Bennetts: refactor sftp vendor support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1111
1111
 
1112
1112
    def __init__(self):
1113
1113
        BzrNewError.__init__(self)    
 
1114
 
 
1115
 
 
1116
class UnknownSSH(BzrNewError):
 
1117
    """Unrecognised value for BZR_SSH environment variable: %(vendor)s"""
 
1118
 
 
1119
    def __init__(self, vendor):
 
1120
        BzrNewError.__init__(self)
 
1121
        self.vendor = vendor
 
1122