public static enum UESComponentFactoryRTException.E05100 extends java.lang.Enum<UESComponentFactoryRTException.E05100> implements ErrorCode
Enum Constant and Description |
---|
M00
Failure of component factory initialization.
|
M01
Failure of component container initialization.
|
M02
Wrong component factory configuration.
|
M03
Cyclic initialization of component factory (container).
|
M04
Container initialization timeout expiration.
|
M05
Failure of component creation.
|
M06
Component does not exist.
|
M07
Unable to create instance of factory.
|
M08
Container not initialized, may be cyclic dependency.
|
M09
Unable to check component existence.
|
M10
Initialization of container failed but application did not
fail (exception was probably swallowed).
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<UESComponentFactoryRTException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static UESComponentFactoryRTException.E05100 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESComponentFactoryRTException.E05100[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESComponentFactoryRTException.E05100 c : UESComponentFactoryRTException.E05100.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