提交 47bb72c3 编写于 作者: L Larry Hamel 提交者: Larry Hamel

Allow exception message content to be testable

Use superclass Exception.__init__ to store message in standard Pythonic way, in addition to any local message storing scheme.
上级 2eba1e24
......@@ -143,7 +143,7 @@ class ProgramArgumentValidationException(Exception):
"""
def __init__(self, msg, shouldPrintHelp=False):
"init"
Exception.__init__(self)
Exception.__init__(self, msg)
self.__shouldPrintHelp = shouldPrintHelp
self.__msg = msg
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册