~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2006-04-25 15:05:42 UTC
  • mfrom: (1185.85.85 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060425150542-c7b518dca9928691
[merge] the old bzr-encoding changes, reparenting them on bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
    """Permission denied: %(path)r%(extra)s"""
211
211
 
212
212
 
 
213
class InvalidURL(PathError):
 
214
    """Invalid url supplied to transport: %(path)r%(extra)s"""
 
215
 
 
216
 
213
217
class PathNotChild(BzrNewError):
214
218
    """Path %(path)r is not a child of path %(base)r%(extra)s"""
215
219
    def __init__(self, path, base, extra=None):