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