KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > protocol > ftp > FtpException


1 /* Copyright (c) 2003 The Nutch Organization. All rights reserved. */
2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */
3
4 package net.nutch.protocol.ftp;
5
6 import net.nutch.protocol.ProtocolException;
7
8 /***
9  * Superclass for important exceptions thrown during FTP talk,
10  * that must be handled with care.
11  *
12  * @author John Xing
13  */

14 public class FtpException extends ProtocolException {
15
16   public FtpException() {
17     super();
18   }
19
20   public FtpException(String JavaDoc message) {
21     super(message);
22   }
23
24   public FtpException(String JavaDoc message, Throwable JavaDoc cause) {
25     super(message, cause);
26   }
27
28   public FtpException(Throwable JavaDoc cause) {
29     super(cause);
30   }
31
32 }
33
Popular Tags