public enum ProviderInitializationExceptionCause extends java.lang.Enum<ProviderInitializationExceptionCause>
ProviderInitializationException to specify the cause of the exception.| Enum Constant and Description |
|---|
INVALID_CONFIG
The application has provided an invalid configuration.
|
| Modifier and Type | Method and Description |
|---|---|
static ProviderInitializationExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProviderInitializationExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderInitializationExceptionCause INVALID_CONFIG
Resolution: The operator should correct the CloudHSM configuration.
public static ProviderInitializationExceptionCause[] values()
for (ProviderInitializationExceptionCause c : ProviderInitializationExceptionCause.values()) System.out.println(c);
public static ProviderInitializationExceptionCause valueOf(java.lang.String name)
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 null