KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > remoting > RequestAbortedException


1 package hudson.remoting;
2
3 /**
4  * Signals that the communication is aborted and thus
5  * the pending {@link Request} will never recover its {@link Response}.
6  *
7  * @author Kohsuke Kawaguchi
8  */

9 public class RequestAbortedException extends RuntimeException JavaDoc {
10     public RequestAbortedException(Throwable JavaDoc cause) {
11         super(cause);
12     }
13 }
14
Popular Tags