~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-20 02:28:21 UTC
  • mfrom: (1666.1.10 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060420022821-4337b8fa4942d8fe
Make knits the default format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
764
764
    """Parameter $(param)s is required but not present."""
765
765
 
766
766
 
 
767
class BzrBadParameterUnicode(BzrBadParameter):
 
768
    """Parameter %(param)s is unicode but only byte-strings are permitted."""
 
769
 
 
770
 
 
771
class BzrBadParameterContainsNewline(BzrBadParameter):
 
772
    """Parameter %(param)s contains a newline."""
 
773
 
 
774
 
767
775
class DependencyNotPresent(BzrNewError):
768
776
    """Unable to import library "%(library)s": %(error)s"""
769
777