home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / FtpLoginException.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  573 b   |  29 lines

  1. /*
  2.  * @(#FtpLoginException.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8.  
  9. package symantec.itools.db.awt;
  10.  
  11. /**
  12.  * This exception gets thrown if an FtpClient cannot login to the host.
  13.  *
  14.  * @see symantec.itools.db.awt.FtpClient
  15.  * @see symantec.itools.db.awt.FtpClient#login
  16.  */
  17. public class FtpLoginException extends Exception
  18. {
  19.     /**
  20.      * Constructs an FtpLoginException with the given error message.
  21.      *
  22.      * @param s the error message
  23.      */
  24.     FtpLoginException(String s)
  25.     {
  26.         super(s);
  27.     }
  28. }
  29.