Searched refs:unhandled_exception (Results 1 – 1 of 1) sorted by relevance
193 def __init__(self, unhandled_exception): argument194 if isinstance(unhandled_exception, JobError):195 JobError.__init__(self, *unhandled_exception.args)196 elif isinstance(unhandled_exception, str):197 JobError.__init__(self, unhandled_exception)200 msg %= (unhandled_exception.__class__.__name__,201 unhandled_exception)202 if not isinstance(unhandled_exception, AutotestError):203 msg += _context_message(unhandled_exception)244 def __init__(self, unhandled_exception): argument[all …]