public static enum UESProcessManagerRTException.E05202 extends java.lang.Enum<UESProcessManagerRTException.E05202> implements ErrorCode
Enum Constant and Description |
---|
M00
Invalid fork (application -> system process).
|
M01
Invalid restore (process -> root process).
|
M02
Invalid restore (system -> application process).
|
M03
Invalid restore (application A -> application B process).
|
M04
Exit of root process.
|
M05
Non-existing process.
|
M06
Unexpected active process.
|
M07
Invalid store (process is not leaf).
|
M08
Serialization failure.
|
M09
Invalid restore (process is not leaf).
|
M10
Deserialization failure.
|
M11
Stored parameter type does not match.
|
M12
Storing local parameter as retained.
|
M13
Storing retained parameter as local.
|
M14
Expected parameter type does not match.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<UESProcessManagerRTException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static UESProcessManagerRTException.E05202 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESProcessManagerRTException.E05202[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESProcessManagerRTException.E05202 c : UESProcessManagerRTException.E05202.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