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:
java.io.Serializable
- Enclosing interface:
- FtpChannel
public static class FtpChannel.FtpException extends java.io.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
private static long
serialVersionUID
private int
status
static int
UNSPECIFIED_FAILURE
static int
UNSUPPORTED
-
Constructor Summary
Constructors Constructor Description FtpException(java.lang.String message, int status)
FtpException(java.lang.String message, int status, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getStatus()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
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
-
status
private final int status
-
-