public static enum CloudAPIException.ErrorCode extends java.lang.Enum<CloudAPIException.ErrorCode>
Enum Constant and Description |
---|
ACCESS_DENIED
Access to perform this operation is denied
|
ERROR_DOWNLOAD
The file could not be downloaded.
|
ERROR_FILE_ALREADY_EXIST
Error File already exists
|
ERROR_FILE_NOT_FOUND
A referenced file cannot be found.
|
ERROR_FILE_TOO_LARGE
The file is too large.
|
ERROR_GENERIC
Generic error.
|
ERROR_HTTP_ABORT
The HTTP communication was aborted.
|
ERROR_HTTP_CODE
An unexpected HTTP error code was received.
|
ERROR_ILLEGAL_ARGUEMENT
An illegal argument was provided.
|
ERROR_INVALID_APPLICATION
Invalid application id, secret or callback url
|
ERROR_INVALID_LOGIN
Error Invalid login
|
ERROR_INVALID_QUERY_TYPE
Error invalid query type
|
ERROR_INVALID_SEARCH_QUERY
Error invalid search query
|
ERROR_IO
A network I/O error occurred.
|
ERROR_LOST_CONNECTION
The network connection was lost.
|
ERROR_NETWORK
An unknown network error occurred.
|
ERROR_NO_SPACE
No space left on device.
|
ERROR_NOT_IMPLEMENTED
The feature will be implemented in the future.
|
ERROR_OPERATION_IN_PROGRESS
The operation is in progress.
|
ERROR_OUT_OF_MEMORY
Out-of-memory on device.
|
ERROR_PARSING_DATE
Error while parsing a date value.
|
ERROR_PERMISSION_DENIED
The logged-in user has insufficient permissions for the client to make this call
|
ERROR_UNABLE_SEND
Error sending data.
|
ERROR_UNABLE_TO_CONNECT
Error connecting.
|
ERROR_UPLOAD
The file could not be uploaded.
|
INVALID_PARAMETER
The client provided at least one invalid parameter.
|
OPERATION_CANCELED
The operation has been cancelled.
|
OPERATION_FAILED
The operation has failed.
|
OPERATION_PAUSED
The operation has been paused and is waiting for a resume or cancel call.
|
OPERATION_UNAUTHORIZED
The operation is not authorized.
|
OTHER_EXCEPTION
An unspecified exception was thrown.
|
USER_UNAUTHORIZED
User is Unauthorized.
|
Modifier and Type | Method and Description |
---|---|
static CloudAPIException.ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudAPIException.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudAPIException.ErrorCode ERROR_NOT_IMPLEMENTED
public static final CloudAPIException.ErrorCode ERROR_LOST_CONNECTION
public static final CloudAPIException.ErrorCode ERROR_PARSING_DATE
public static final CloudAPIException.ErrorCode ERROR_NETWORK
public static final CloudAPIException.ErrorCode ERROR_IO
public static final CloudAPIException.ErrorCode ERROR_FILE_NOT_FOUND
public static final CloudAPIException.ErrorCode ERROR_HTTP_CODE
public static final CloudAPIException.ErrorCode ERROR_HTTP_ABORT
public static final CloudAPIException.ErrorCode ERROR_ILLEGAL_ARGUEMENT
public static final CloudAPIException.ErrorCode ERROR_GENERIC
public static final CloudAPIException.ErrorCode ERROR_OPERATION_IN_PROGRESS
public static final CloudAPIException.ErrorCode ERROR_NO_SPACE
public static final CloudAPIException.ErrorCode ERROR_OUT_OF_MEMORY
public static final CloudAPIException.ErrorCode ERROR_UNABLE_SEND
public static final CloudAPIException.ErrorCode ERROR_UNABLE_TO_CONNECT
public static final CloudAPIException.ErrorCode ERROR_INVALID_LOGIN
public static final CloudAPIException.ErrorCode ERROR_DOWNLOAD
public static final CloudAPIException.ErrorCode ERROR_UPLOAD
public static final CloudAPIException.ErrorCode ERROR_FILE_TOO_LARGE
public static final CloudAPIException.ErrorCode OPERATION_FAILED
public static final CloudAPIException.ErrorCode OPERATION_UNAUTHORIZED
public static final CloudAPIException.ErrorCode USER_UNAUTHORIZED
public static final CloudAPIException.ErrorCode INVALID_PARAMETER
public static final CloudAPIException.ErrorCode OPERATION_PAUSED
public static final CloudAPIException.ErrorCode OPERATION_CANCELED
public static final CloudAPIException.ErrorCode OTHER_EXCEPTION
public static final CloudAPIException.ErrorCode ERROR_PERMISSION_DENIED
public static final CloudAPIException.ErrorCode ERROR_INVALID_QUERY_TYPE
public static final CloudAPIException.ErrorCode ERROR_INVALID_SEARCH_QUERY
public static final CloudAPIException.ErrorCode ERROR_FILE_ALREADY_EXIST
public static final CloudAPIException.ErrorCode ERROR_INVALID_APPLICATION
public static final CloudAPIException.ErrorCode ACCESS_DENIED
public static CloudAPIException.ErrorCode[] values()
for (CloudAPIException.ErrorCode c : CloudAPIException.ErrorCode.values()) System.out.println(c);
public static CloudAPIException.ErrorCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null