public enum InvalidX509EncodedKeyExceptionCause extends java.lang.Enum<InvalidX509EncodedKeyExceptionCause>
InvalidX509EncodedKeyException to specify the cause of the exception.| Enum Constant and Description |
|---|
INVALID_ENCODED_KEY
The provided X509 encoded key is invalid.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidX509EncodedKeyExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidX509EncodedKeyExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidX509EncodedKeyExceptionCause INVALID_ENCODED_KEY
Resolution: The application should provide a valid X509 encoded key.
public static InvalidX509EncodedKeyExceptionCause[] values()
for (InvalidX509EncodedKeyExceptionCause c : InvalidX509EncodedKeyExceptionCause.values()) System.out.println(c);
public static InvalidX509EncodedKeyExceptionCause 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