public enum InvalidAesCmacKdfParameterExceptionCause extends java.lang.Enum<InvalidAesCmacKdfParameterExceptionCause>
InvalidAesCmacKdfParameterException to specify the cause of the exception.| Enum Constant and Description |
|---|
INVALID_REQUIRED_PARAMETERS
The provided counter width parameter is invalid or encoded input data is NULL.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidAesCmacKdfParameterExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidAesCmacKdfParameterExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidAesCmacKdfParameterExceptionCause INVALID_REQUIRED_PARAMETERS
Resolution: The application should provide valid counter width and non NULL encoded input data for Aes Cmac Kdf parameter.
public static InvalidAesCmacKdfParameterExceptionCause[] values()
for (InvalidAesCmacKdfParameterExceptionCause c : InvalidAesCmacKdfParameterExceptionCause.values()) System.out.println(c);
public static InvalidAesCmacKdfParameterExceptionCause 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