public static enum UWTPersistenceRTException.E05N03 extends java.lang.Enum<UWTPersistenceRTException.E05N03> implements ErrorCode
Enum Constant and Description |
---|
M00
Unknown error.
|
M01
The value for attribute with id={0}, code={1}, owner={2}, ucCode={3} is
too big ({4} bytes; limit is {5}).
|
M02
Unable to convert CLOB to String for the record with id={0}, code={1},
owner={2}, ucCode={3}.
|
M03
Invalid parameters - trying to store an attribute without ID or with
incomplete key triplet.
|
M04
Trying to modify attribute: id={0}, code={1}, ownerUri={2}, ucCode={3},
creationTimestamp={4} with an attribute: id={5}, code={6}, ownerUri={7},
ucCode={8}, creationTimestamp={9}.
|
M05
Trying to store value of class {0}, but the attribute's \"valueClass\"
field indicates class {1}.
|
M06
Unable to store/load given class - the marshaller does not support class
{0}.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends UESRuntimeException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static UWTPersistenceRTException.E05N03 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UWTPersistenceRTException.E05N03[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UWTPersistenceRTException.E05N03 c : UWTPersistenceRTException.E05N03.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 ErrorCode