~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2008-02-13 04:58:32 UTC
  • Revision ID: aaron@aaronbentley.com-20080213045832-ohymgqf0quamuhye
Update email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005 Aaron Bentley, 2006 Michael Ellerman
2
 
# <aaron.bentley@utoronto.ca>
 
2
# <aaron@aaronbentley.com>
3
3
#
4
4
#    This program is free software; you can redistribute it and/or modify
5
5
#    it under the terms of the GNU General Public License as published by
33
33
 
34
34
class PatchInvokeError(BzrError):
35
35
 
36
 
    _fmt = """Error invoking patch: %(errstr)s\n%(stderr)s"""
 
36
    _fmt = """Error invoking patch: %(errstr)s%(stderr)s"""
37
37
    internal_error = False
38
38
 
39
 
    def __init__(self, e, stderr):
 
39
    def __init__(self, e, stderr=''):
40
40
        self.exception = e
41
41
        self.errstr = os.strerror(e.errno)
42
 
        self.stderr = stderr
 
42
        self.stderr = '\n' + stderr
43
43
 
44
44
 
45
45
class NoColor(Exception):
63
63
class ParentMissingRevisions(CommandError):
64
64
    """The parent branch is missing revisions."""
65
65
    def __init__(self, parent):
66
 
        CommandError.__init__(self, 
67
 
            "The parent branch %s is missing revisions from this branch." % 
 
66
        CommandError.__init__(self,
 
67
            "The parent branch %s is missing revisions from this branch." %
68
68
            parent)
69
69
        self.parent = parent
70
70
 
72
72
    def __init__(self):
73
73
        CommandError.__init__(self, "There is no parent, so deleting the"
74
74
                                    " branch could destroy data.")
 
75
 
 
76
class ChangedBinaryFiles(BzrError):
 
77
 
 
78
    _fmt = 'Changes involve binary files.'