1b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabotpackage org.junit.runner.notification;
2b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
3b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot/**
4b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot * Thrown when a user has requested that the test run stop. Writers of
5b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot * test running GUIs should be prepared to catch a <code>StoppedByUserException</code>.
6b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot *
7b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot * @see org.junit.runner.notification.RunNotifier
8b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot */
9b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabotpublic class StoppedByUserException extends RuntimeException {
10b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot	private static final long serialVersionUID= 1L;
11b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot}
12