public static enum UESStorageServiceRTException.E05J00 extends java.lang.Enum<UESStorageServiceRTException.E05J00> implements ErrorCode
| Enum Constant and Description | 
|---|
M00
Generic error. 
 | 
M01
Bucket cannot be deleted because there is no such bucket with the specified ID. 
 | 
M02
Cannot delete bucket because it is not empty. 
 | 
M03
Cannot delete object with the specified ID because there is no object with such ID. 
 | 
M04
Bucket ID must not be null or empty and must be valid. 
 | 
M05
Object ID must not be null or empty and must be valid. 
 | 
M06
Bucket ID contains invalid characters. 
 | 
M07
Cannot get the specified object from a non-existing bucket. 
 | 
M08
Cannot get the specified object from the specified bucket because the object does not exist. 
 | 
M09
Cannot put null object in the storage. 
 | 
M10
Cannot put object with the specified ID into bucket with the specified ID because the bucket does not exist. 
 | 
M11
Cannot list objects from bucket because parameter for previous listing is null. 
 | 
M12
Cannot get an object from bucket due to an I/O error. 
 | 
M13
Cannot create new bucket with the specified ID because there already exist bucket with the same ID. 
 | 
M14
Cannot obtain object list because there is no bucket with the specified ID. 
 | 
M15
"Cannot delete the specified object from bucket with the specified ID because the bucket does not exist. 
 | 
M16
The requested page size value for size of bucket listing must be equal to or greater than zero. 
 | 
M17
Object ID contains invalid characters. 
 | 
M18
Cannot add user metadata entry, the key for metadata is either null or empty string or the metadata value is null. 
 | 
M19
Cannot set user metadata, the passed metadata contains some key or value that is null. 
 | 
M20
Cannot create instance of UESStorageObject because the content type is either null or empty. 
 | 
M21
Cannot create instance of UESStorageObject because the content length is less than zero. 
 | 
M22
Cannot create instance of UES storage object, reference to input file is null. 
 | 
M23
Cannot create instance of UES storage object, reference to input stream is null. 
 | 
M24
Cannot set metadata to UESStorageObject, the reference to the metadata is null. 
 | 
M25
Size of metadata exceeded allowed maximal size. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Class<? extends UESRuntimeException> | 
getExceptionClass()
Returns class of exception which is owner of this error code. 
 | 
static UESStorageServiceRTException.E05J00 | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static UESStorageServiceRTException.E05J00[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
for (UESStorageServiceRTException.E05J00 c : UESStorageServiceRTException.E05J00.values()) System.out.println(c);
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 nullgetExceptionClass in interface ErrorCodeErrorCode.getExceptionClass()