Home
last modified time | relevance | path

Searched refs:unhandled_exception (Results 1 – 1 of 1) sorted by relevance

/external/autotest/client/common_lib/
Derror.py193 def __init__(self, unhandled_exception): argument
194 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 …]