~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2007-12-22 02:01:03 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20071222020103-ggjszok7n974e1l2
Update branches, multi-pull to new APIs, create trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005 Aaron Bentley, 2006 Michael Ellerman
2
 
# <aaron@aaronbentley.com>
 
2
# <aaron.bentley@utoronto.ca>
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
27
27
    class CommandError(Exception):
28
28
        pass
29
29
 
30
 
class PatchFailed(BzrError):
31
 
 
32
 
    _fmt = """Patch application failed"""
 
30
class PatchFailed(Exception):
 
31
    """Failed applying patch!"""
33
32
 
34
33
 
35
34
class PatchInvokeError(BzrError):
36
35
 
37
 
    _fmt = """Error invoking patch: %(errstr)s%(stderr)s"""
 
36
    _fmt = """Error invoking patch: %(errstr)s\n%(stderr)s"""
38
37
    internal_error = False
39
38
 
40
 
    def __init__(self, e, stderr=''):
 
39
    def __init__(self, e, stderr):
41
40
        self.exception = e
42
41
        self.errstr = os.strerror(e.errno)
43
 
        self.stderr = '\n' + stderr
 
42
        self.stderr = stderr
44
43
 
45
44
 
46
45
class NoColor(Exception):