Mix-in for exception classes that allow text to be added at several levels of exception handling.
def __init__(self, text = None):
def addText(self, newText):
Adds newText to the exception text list.
Returns the complete exception text as a single string, with individual
exception items seperated by newlines.
getText(self)
def getText(self):