Home | History | Annotate | Download | only in site_utils

Lines Matching refs:exception

114 class TestPushException(Exception):
115 """Exception to be raised when the test to push to prod failed."""
241 except Exception as e:
366 for exception in IGNORE_MISSING_TESTS:
368 missing_test_errors.remove(exception)
405 """Wrapper to call test_suite. Handle exception and pipe it to parent
408 @param queue: Queue to save exception to be accessed by parent process.
479 """Check the queue for any exception being raised.
481 @param queue: Queue used to store exception for parent process to access.
482 @raise: Any exception found in the queue.
487 # Raise the exception with original backtrace.
488 print 'Original stack trace of the exception:\n%s' % exc_info[2]
545 except Exception as e: