Home
last modified time | relevance | path

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

/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dassertions.dart369 String formatException() => exceptionAsString().split('\n')[0].trimLeft();
371 return DiagnosticsNode.message(formatException());
380 return summary ?? ErrorSummary('${formatException()}');
/third_party/python/Lib/logging/
D__init__.py624 def formatException(self, ei): member in Formatter
686 record.exc_text = self.formatException(record.exc_info)
/third_party/python/Doc/library/
Dlogging.rst580 formatted using :meth:`formatException` and appended to the message. Note
630 .. method:: formatException(exc_info)
/third_party/python/Doc/howto/
Dlogging-cookbook.rst2196 def formatException(self, exc_info):
2200 result = super().formatException(exc_info)
/third_party/python/Lib/test/
Dtest_logging.py1199 def formatException(self, ei): member in ExceptionFormatter