Merge pull request #5100 from finefoot/patch-12

Allow message for Error base class
This commit is contained in:
TW 2020-04-11 15:58:53 +02:00 committed by GitHub
commit 9ac97e6d0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,8 @@ import borg.crypto.low_level
class Error(Exception):
"""Error base class"""
"""Error: {}"""
# Error base class
# if we raise such an Error and it is only catched by the uppermost
# exception handler (that exits short after with the given exit_code),
@ -24,7 +25,8 @@ class Error(Exception):
class ErrorWithTraceback(Error):
"""like Error, but show a traceback also"""
"""Error: {}"""
# like Error, but show a traceback also
traceback = True