Package org.eclipse.jgit.transport
Class FtpChannel.FtpException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.transport.FtpChannel.FtpException
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- FtpChannel
public static class FtpChannel.FtpException extends IOException
AnException
for reporting SFTP errors.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
EOF
static int
NO_PERMISSION
static int
NO_SUCH_FILE
static int
OK
static int
PROTOCOL_ERROR
static int
UNSPECIFIED_FAILURE
static int
UNSUPPORTED
-
Constructor Summary
Constructors Constructor Description FtpException(String message, int status)
FtpException(String message, int status, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getStatus()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
OK
public static final int OK
- See Also:
- Constant Field Values
-
EOF
public static final int EOF
- See Also:
- Constant Field Values
-
NO_SUCH_FILE
public static final int NO_SUCH_FILE
- See Also:
- Constant Field Values
-
NO_PERMISSION
public static final int NO_PERMISSION
- See Also:
- Constant Field Values
-
UNSPECIFIED_FAILURE
public static final int UNSPECIFIED_FAILURE
- See Also:
- Constant Field Values
-
PROTOCOL_ERROR
public static final int PROTOCOL_ERROR
- See Also:
- Constant Field Values
-
UNSUPPORTED
public static final int UNSUPPORTED
- See Also:
- Constant Field Values
-
-