public static enum UESScriptRTException.E10C00 extends java.lang.Enum<UESScriptRTException.E10C00> implements ErrorCode
Enum Constant and Description |
---|
M00
Default message code.
|
M01
There is no process to run script.
|
M02
Script does not exist.
|
M03
Script is invalid.
|
M04
Load of script params failed.
|
M05
Invalid value of script params.
|
M06
Problem with serialization of script params.
|
M07
Problem with ordering of script execution.
|
M08
Problem with script execution.
|
M09
Maximum wait time exceeded.
|
M10
Problem with creating monitoring activity.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<UESScriptRTException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static UESScriptRTException.E10C00 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESScriptRTException.E10C00[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESScriptRTException.E10C00 c : UESScriptRTException.E10C00.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