public enum ProviderExceptionCause extends java.lang.Enum<ProviderExceptionCause>
ProviderException to specify the cause of the exception.| Enum Constant and Description |
|---|
DISCONNECTED
The HSM connection was lost.
|
| Modifier and Type | Method and Description |
|---|---|
static ProviderExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProviderExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderExceptionCause DISCONNECTED
Resolution: The application should retry after the HSM connection has recovered.
public static ProviderExceptionCause[] values()
for (ProviderExceptionCause c : ProviderExceptionCause.values()) System.out.println(c);
public static ProviderExceptionCause 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