~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: abentley
  • Date: 2006-04-21 05:52:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1683.
  • Revision ID: abentley@lappy-20060421055244-2ba416dcc7539d96
Fix fileid involed tests on win32 (by skipping them for unescaped weave formats)

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