Searched refs:json_exception (Results 1 – 1 of 1) sorted by relevance
474 def parse_crash_reason(self, json_exception): argument475 exception_type = json_exception['type']477 if 'signal' in json_exception:478 exception_signal += "({})".format(json_exception['signal'])480 if 'codes' in json_exception:481 exception_extra = " ({})".format(json_exception['codes'])482 elif 'subtype' in json_exception:483 exception_extra = " ({})".format(json_exception['subtype'])