~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2007-06-21 05:35:27 UTC
  • mfrom: (2542 +trunk)
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: aaron.bentley@utoronto.ca-20070621053527-rhs3b3u0ozpbr86v
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    """
49
49
    Base class for errors raised by bzrlib.
50
50
 
51
 
    :cvar internal_error: if true (or absent) this was probably caused by a
52
 
    bzr bug and should be displayed with a traceback; if False this was
 
51
    :cvar internal_error: if True this was probably caused by a bzr bug and
 
52
    should be displayed with a traceback; if False (or absent) this was
53
53
    probably a user or environment error and they don't need the gory details.
54
54
    (That can be overridden by -Derror on the command line.)
55
55
 
1579
1579
 
1580
1580
    _fmt = "Bad parameter: %(param)r"
1581
1581
 
 
1582
    internal_error = True
 
1583
 
1582
1584
    # This exception should never be thrown, but it is a base class for all
1583
1585
    # parameter-to-function errors.
1584
1586