Lines Matching refs:unhandled_exception
48 def __init__(self, unhandled_exception):
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)
97 def __init__(self, unhandled_exception):
98 if isinstance(unhandled_exception, TestError):
99 TestError.__init__(self, *unhandled_exception.args)
100 elif isinstance(unhandled_exception, basestring):
101 TestError.__init__(self, unhandled_exception)
104 msg %= (unhandled_exception.__class__.__name__,
105 unhandled_exception)
112 def __init__(self, unhandled_exception):
113 if isinstance(unhandled_exception, TestFail):
114 TestFail.__init__(self, *unhandled_exception.args)
115 elif isinstance(unhandled_exception, basestring):
116 TestFail.__init__(self, unhandled_exception)
119 msg %= (unhandled_exception.__class__.__name__,
120 unhandled_exception)