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