Searched refs:unhandled_exception (Results 1 – 1 of 1) sorted by relevance
56 def __init__(self, unhandled_exception): argument57 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): argument106 if isinstance(unhandled_exception, TestError):107 TestError.__init__(self, *unhandled_exception.args)[all …]