KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > coldcore > coloradoftp > connection > TransferAbortedException


1 package com.coldcore.coloradoftp.connection;
2
3 /**
4  * Exception which is thrown by data connections when users abort data transfers or disconnect
5  * while data transfers are still active.
6  * This is considered as a normal connection termination.
7  *
8  *
9  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
10  */

11 public class TransferAbortedException extends TerminatedException {
12
13   public String JavaDoc toString() {
14     return "Connection terminated (transfer aborted)";
15   }
16 }
17
Popular Tags