public enum AccountAlreadyLoggedInExceptionCause extends java.lang.Enum<AccountAlreadyLoggedInExceptionCause>
AccountAlreadyLoggedInException to specify the cause of the exception.| Enum Constant and Description |
|---|
ACCOUNT_ALREADY_LOGGED_IN
The HSM user is already logged in.
|
| Modifier and Type | Method and Description |
|---|---|
static AccountAlreadyLoggedInExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountAlreadyLoggedInExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountAlreadyLoggedInExceptionCause ACCOUNT_ALREADY_LOGGED_IN
Resolution: The application may log in only once.
public static AccountAlreadyLoggedInExceptionCause[] values()
for (AccountAlreadyLoggedInExceptionCause c : AccountAlreadyLoggedInExceptionCause.values()) System.out.println(c);
public static AccountAlreadyLoggedInExceptionCause 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