KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.coldcore.coloradoftp.connection;
2
3 /**
4  * Exception which is thrown by a connection when it is terminated.
5  * This is considired as a normal connection termination.
6  *
7  * This class is a base class for all normal connection termination exceptions.
8  *
9  *
10  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
11  */

12 public class TerminatedException extends Exception JavaDoc {
13
14   public String JavaDoc toString() {
15     return "Connection terminated (normal)";
16   }
17 }
18
Popular Tags