From b694a4a2d4719169ccc7fb3696367bca7118b513 Mon Sep 17 00:00:00 2001 From: Taseer Date: Tue, 11 Apr 2017 21:39:18 +0500 Subject: User friendly messages for exceptions - Use colorama for color - Implement verbosity option in separate patch Change-Id: Ib2491d867e9bbf59cb00874d99a11f86ad7eea1b Signed-off-by: Taseer Ahmed --- qtip/base/error.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'qtip/base') diff --git a/qtip/base/error.py b/qtip/base/error.py index f23d8cd9..d4b516ac 100644 --- a/qtip/base/error.py +++ b/qtip/base/error.py @@ -16,12 +16,14 @@ class InvalidContentError(BaseError): def __init__(self, filename, excinfo=None): self.filename = filename self.excinfo = excinfo + self.message = "Invalid content in {0}".format(filename) class NotFoundError(BaseError): def __init__(self, needle, heystack='qtip'): self.needle = needle self.heystack = heystack + self.message = "{0} not found in {1}".format(needle[0:-5], heystack) class ToBeDoneError(BaseError): -- cgit 1.2.3-korg