~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/message.py

  • Committer: John Arbash Meinel
  • Date: 2009-04-30 01:54:04 UTC
  • mfrom: (4312 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4314.
  • Revision ID: john@arbash-meinel.com-20090430015404-iwf322ortskqb1pr
Merge bzr.dev 4312

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
        raise errors.LockContention('(remote lock)')
352
352
    elif error_name == 'LockFailed':
353
353
        raise errors.LockFailed(*error_args[:2])
 
354
    elif error_name == 'FileExists':
 
355
        raise errors.FileExists(error_args[0])
 
356
    elif error_name == 'NoSuchFile':
 
357
        raise errors.NoSuchFile(error_args[0])
354
358
    else:
355
359
        raise errors.ErrorFromSmartServer(error_tuple)