Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/sftp/ErrorCodes.java @ 273:91a31873c42a ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 11:21:46 -0700 |
parents | |
children | 071eccdff8ea |
comparison
equal
deleted
inserted
replaced
272:ce2f4e397703 | 273:91a31873c42a |
---|---|
1 /* | |
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. | |
3 * Please refer to the LICENSE.txt for licensing details. | |
4 */ | |
5 package ch.ethz.ssh2.sftp; | |
6 | |
7 /** | |
8 * SFTP Error Codes | |
9 * | |
10 * @author Christian Plattner | |
11 * @version 2.50, 03/15/10 | |
12 */ | |
13 public final class ErrorCodes { | |
14 private ErrorCodes() { | |
15 } | |
16 | |
17 public static final int SSH_FX_OK = 0; | |
18 public static final int SSH_FX_EOF = 1; | |
19 public static final int SSH_FX_NO_SUCH_FILE = 2; | |
20 public static final int SSH_FX_PERMISSION_DENIED = 3; | |
21 public static final int SSH_FX_FAILURE = 4; | |
22 public static final int SSH_FX_BAD_MESSAGE = 5; | |
23 public static final int SSH_FX_NO_CONNECTION = 6; | |
24 public static final int SSH_FX_CONNECTION_LOST = 7; | |
25 /** | |
26 * The server MUST respond with SSH_FXP_STATUS(SSH_FX_OP_UNSUPPORTED) if | |
27 * it receives a packet it does not recognize. | |
28 */ | |
29 public static final int SSH_FX_OP_UNSUPPORTED = 8; | |
30 public static final int SSH_FX_INVALID_HANDLE = 9; | |
31 public static final int SSH_FX_NO_SUCH_PATH = 10; | |
32 public static final int SSH_FX_FILE_ALREADY_EXISTS = 11; | |
33 public static final int SSH_FX_WRITE_PROTECT = 12; | |
34 public static final int SSH_FX_NO_MEDIA = 13; | |
35 public static final int SSH_FX_NO_SPACE_ON_FILESYSTEM = 14; | |
36 public static final int SSH_FX_QUOTA_EXCEEDED = 15; | |
37 public static final int SSH_FX_UNKNOWN_PRINCIPAL = 16; | |
38 public static final int SSH_FX_LOCK_CONFLICT = 17; | |
39 public static final int SSH_FX_DIR_NOT_EMPTY = 18; | |
40 public static final int SSH_FX_NOT_A_DIRECTORY = 19; | |
41 public static final int SSH_FX_INVALID_FILENAME = 20; | |
42 public static final int SSH_FX_LINK_LOOP = 21; | |
43 public static final int SSH_FX_CANNOT_DELETE = 22; | |
44 public static final int SSH_FX_INVALID_PARAMETER = 23; | |
45 public static final int SSH_FX_FILE_IS_A_DIRECTORY = 24; | |
46 public static final int SSH_FX_BYTE_RANGE_LOCK_CONFLICT = 25; | |
47 public static final int SSH_FX_BYTE_RANGE_LOCK_REFUSED = 26; | |
48 public static final int SSH_FX_DELETE_PENDING = 27; | |
49 public static final int SSH_FX_FILE_CORRUPT = 28; | |
50 public static final int SSH_FX_OWNER_INVALID = 29; | |
51 public static final int SSH_FX_GROUP_INVALID = 30; | |
52 public static final int SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK = 31; | |
53 | |
54 private static final String[][] messages = { | |
55 | |
56 {"SSH_FX_OK", "Indicates successful completion of the operation."}, | |
57 {"SSH_FX_EOF", | |
58 "An attempt to read past the end-of-file was made; or, there are no more directory entries to return."}, | |
59 {"SSH_FX_NO_SUCH_FILE", "A reference was made to a file which does not exist."}, | |
60 {"SSH_FX_PERMISSION_DENIED", "The user does not have sufficient permissions to perform the operation."}, | |
61 {"SSH_FX_FAILURE", "An error occurred, but no specific error code exists to describe the failure."}, | |
62 {"SSH_FX_BAD_MESSAGE", "A badly formatted packet or other SFTP protocol incompatibility was detected."}, | |
63 {"SSH_FX_NO_CONNECTION", "There is no connection to the server."}, | |
64 {"SSH_FX_CONNECTION_LOST", "The connection to the server was lost."}, | |
65 {"SSH_FX_OP_UNSUPPORTED", | |
66 "An attempted operation could not be completed by the server because the server does not support the operation."}, | |
67 {"SSH_FX_INVALID_HANDLE", "The handle value was invalid."}, | |
68 {"SSH_FX_NO_SUCH_PATH", "The file path does not exist or is invalid."}, | |
69 {"SSH_FX_FILE_ALREADY_EXISTS", "The file already exists."}, | |
70 {"SSH_FX_WRITE_PROTECT", "The file is on read-only media, or the media is write protected."}, | |
71 {"SSH_FX_NO_MEDIA", | |
72 "The requested operation cannot be completed because there is no media available in the drive."}, | |
73 {"SSH_FX_NO_SPACE_ON_FILESYSTEM", | |
74 "The requested operation cannot be completed because there is insufficient free space on the filesystem."}, | |
75 {"SSH_FX_QUOTA_EXCEEDED", | |
76 "The operation cannot be completed because it would exceed the user's storage quota."}, | |
77 { | |
78 "SSH_FX_UNKNOWN_PRINCIPAL", | |
79 "A principal referenced by the request (either the 'owner', 'group', or 'who' field of an ACL), was unknown. The error specific data contains the problematic names."}, | |
80 {"SSH_FX_LOCK_CONFLICT", "The file could not be opened because it is locked by another process."}, | |
81 {"SSH_FX_DIR_NOT_EMPTY", "The directory is not empty."}, | |
82 {"SSH_FX_NOT_A_DIRECTORY", "The specified file is not a directory."}, | |
83 {"SSH_FX_INVALID_FILENAME", "The filename is not valid."}, | |
84 {"SSH_FX_LINK_LOOP", | |
85 "Too many symbolic links encountered or, an SSH_FXF_NOFOLLOW open encountered a symbolic link as the final component."}, | |
86 {"SSH_FX_CANNOT_DELETE", | |
87 "The file cannot be deleted. One possible reason is that the advisory READONLY attribute-bit is set."}, | |
88 {"SSH_FX_INVALID_PARAMETER", | |
89 "One of the parameters was out of range, or the parameters specified cannot be used together."}, | |
90 {"SSH_FX_FILE_IS_A_DIRECTORY", | |
91 "The specified file was a directory in a context where a directory cannot be used."}, | |
92 {"SSH_FX_BYTE_RANGE_LOCK_CONFLICT", | |
93 " A read or write operation failed because another process's mandatory byte-range lock overlaps with the request."}, | |
94 {"SSH_FX_BYTE_RANGE_LOCK_REFUSED", "A request for a byte range lock was refused."}, | |
95 {"SSH_FX_DELETE_PENDING", "An operation was attempted on a file for which a delete operation is pending."}, | |
96 {"SSH_FX_FILE_CORRUPT", "The file is corrupt; an filesystem integrity check should be run."}, | |
97 {"SSH_FX_OWNER_INVALID", "The principal specified can not be assigned as an owner of a file."}, | |
98 {"SSH_FX_GROUP_INVALID", "The principal specified can not be assigned as the primary group of a file."}, | |
99 {"SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK", | |
100 "The requested operation could not be completed because the specifed byte range lock has not been granted."}, | |
101 | |
102 }; | |
103 | |
104 public static final String[] getDescription(int errorCode) { | |
105 if((errorCode < 0) || (errorCode >= messages.length)) { | |
106 return null; | |
107 } | |
108 | |
109 return messages[errorCode]; | |
110 } | |
111 } |