001package org.junit.runner.notification;
002
003/**
004 * Thrown when a user has requested that the test run stop. Writers of
005 * test running GUIs should be prepared to catch a <code>StoppedByUserException</code>.
006 *
007 * @see org.junit.runner.notification.RunNotifier
008 * @since 4.0
009 */
010public class StoppedByUserException extends RuntimeException {
011    private static final long serialVersionUID = 1L;
012}