KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.coldcore.coloradoftp.connection;
2
3 /**
4  * Exception which is thrown by a data connection when a data transfer finishes successfully.
5  * This is considered as a normal connection termination.
6  *
7  *
8  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
9  */

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