Class FtpException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.ftpserver.ftplet.FtpException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AuthenticationFailedException

public class FtpException extends Exception
Ftplet exception class.
Author:
Apache MINA Project
See Also:
  • Constructor Details

    • FtpException

      public FtpException()
      Default constructor.
    • FtpException

      public FtpException(String msg)
      Constructs a FtpException object with a message.
      Parameters:
      msg - a description of the exception
    • FtpException

      public FtpException(Throwable th)
      Constructs a FtpException object with a Throwable cause.
      Parameters:
      th - the original cause
    • FtpException

      public FtpException(String msg, Throwable th)
      Constructs a BaseException object with a Throwable cause.
      Parameters:
      msg - A description of the exception
      th - The original cause
  • Method Details