01: package snow.concurrent;
02:
03: /** Is thrown when an interrupter has requested some thread to stop.
04: */
05: public class ManualInterruptedException extends InterruptedException // Runtime
06: {
07:
08: public ManualInterruptedException() {
09: super ();
10: }
11:
12: public ManualInterruptedException(String s) {
13: super(s);
14: }
15: }
|