KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > snow > concurrent > ManualInterruptedException


1 package snow.concurrent;
2
3 /** is thrown when an interrupter has requested some thread to stop
4 */

5 public class ManualInterruptedException extends InterruptedException JavaDoc
6 {
7
8   public ManualInterruptedException()
9   {
10     super();
11   }
12
13   public ManualInterruptedException(String JavaDoc s)
14   {
15     super(s);
16   }
17
18
19
20 } // ManualInterruptedException
21
Popular Tags