Lines Matching refs:unhandled_exception
48 def __init__(self, unhandled_exception): argument
49 if isinstance(unhandled_exception, JobError):
50 JobError.__init__(self, *unhandled_exception.args)
51 elif isinstance(unhandled_exception, basestring):
52 JobError.__init__(self, unhandled_exception)
55 msg %= (unhandled_exception.__class__.__name__,
56 unhandled_exception)
91 def __init__(self, unhandled_exception): argument
92 if isinstance(unhandled_exception, TestError):
93 TestError.__init__(self, *unhandled_exception.args)
94 elif isinstance(unhandled_exception, basestring):
95 TestError.__init__(self, unhandled_exception)
98 msg %= (unhandled_exception.__class__.__name__,
99 unhandled_exception)
106 def __init__(self, unhandled_exception): argument
107 if isinstance(unhandled_exception, TestFail):
108 TestFail.__init__(self, *unhandled_exception.args)
109 elif isinstance(unhandled_exception, basestring):
110 TestFail.__init__(self, unhandled_exception)
113 msg %= (unhandled_exception.__class__.__name__,
114 unhandled_exception)