~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-22 07:28:09 UTC
  • mfrom: (1551.2.56 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20060422072809-b06e742274a4e9f4
Misc fixes for win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
894
894
 
895
895
class BinaryFile(BzrNewError):
896
896
    """File is binary but should be text."""
 
897
 
 
898
 
 
899
class IllegalPath(BzrNewError):
 
900
    """The path %(path)s is not permitted on this platform"""
 
901
 
 
902
    def __init__(self, path):
 
903
        BzrNewError.__init__(self)
 
904
        self.path = path