1 package 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 * @since 4.0 9 */ 10 public class StoppedByUserException extends RuntimeException { 11 private static final long serialVersionUID = 1L; 12 } 13