Lines Matching refs:unhandled_exception
56 def __init__(self, unhandled_exception): argument
57 if isinstance(unhandled_exception, JobError):
58 JobError.__init__(self, *unhandled_exception.args)
59 elif isinstance(unhandled_exception, str):
60 JobError.__init__(self, unhandled_exception)
63 msg %= (unhandled_exception.__class__.__name__,
64 unhandled_exception)
105 def __init__(self, unhandled_exception): argument
106 if isinstance(unhandled_exception, TestError):
107 TestError.__init__(self, *unhandled_exception.args)
108 elif isinstance(unhandled_exception, str):
109 TestError.__init__(self, unhandled_exception)
112 msg %= (unhandled_exception.__class__.__name__,
113 unhandled_exception)
120 def __init__(self, unhandled_exception): argument
121 if isinstance(unhandled_exception, TestFail):
122 TestFail.__init__(self, *unhandled_exception.args)
123 elif isinstance(unhandled_exception, str):
124 TestFail.__init__(self, unhandled_exception)
127 msg %= (unhandled_exception.__class__.__name__,
128 unhandled_exception)