Add msg property to FunctionTimedOut exception (also can get by str( exception )

This commit is contained in:
Tim Savannah 2017-05-20 17:04:22 -04:00
parent 75d90251f6
commit b729265855

View File

@ -36,6 +36,8 @@ class FunctionTimedOut(BaseException):
BaseException.__init__(self, msg)
self.msg = msg
def getMsg(self):
'''