KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > coldcore > coloradoftp > filesystem > FailedActionReason


1 package com.coldcore.coloradoftp.filesystem;
2
3 /**
4  * Defines a reason of why filesystem failed to perform user action.
5  *
6  *
7  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
8  */

9 public enum FailedActionReason {
10   NO_PERMISSIONS, //No permissions for operation
11
PATH_ERROR, //Requested path not found, already exists etc.
12
SYSTEM_ERROR, //System error
13
NOT_IMPLEMENTED, //Operation is not implemented
14
INVALID_INPUT, //Supplied user's input if of invalid syntax
15
OTHER //Other reason
16
}
17
Popular Tags