KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > junit > runner > notification > StoppedByUserException


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  */

9 public class StoppedByUserException extends RuntimeException JavaDoc {
10     private static final long serialVersionUID= 1L;
11 }
12
Popular Tags