aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/notification/StoppedByUserException.java
blob: 89be3ba0b74a6c2cf00f0511ee25a0ed7630628b (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.junit.runner.notification;

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