/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: Marius Kruger
  • Date: 2006-12-21 18:07:52 UTC
  • mto: (2220.1.1 bzr.enhanced_move)
  • mto: This revision was merged to the branch mainline in revision 2241.
  • Revision ID: marius.kruger@enerweb.co.za-20061221180752-twd4soiaglxi3ofj
Improved WorkingTree.move excptions. (as requested)

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
    _fmt = "File exists: %(path)r%(extra)s"
320
320
 
321
321
 
 
322
class NotADirectory(PathError):
 
323
 
 
324
    _fmt = "%(path)r is not a directory %(extra)s"
 
325
 
 
326
 
 
327
class NotInWorkingDirectory(PathError):
 
328
 
 
329
    _fmt = "%(path)r is not a the working directory %(extra)s"
 
330
 
 
331
 
322
332
class DirectoryNotEmpty(PathError):
323
333
 
324
334
    _fmt = "Directory not empty: %(path)r%(extra)s"