public static enum CryptographyServiceRTException.E05420 extends java.lang.Enum<CryptographyServiceRTException.E05420> implements ErrorCode
Enum Constant and Description |
---|
M00
Sytem exception.
|
M01
No key provider configured.
|
M02
Unsupported cipher algorithm.
|
M03
Unsupported key algorithm.
|
M04
Error obtaining encryption key.
|
M05
Empty encryption key.
|
M06
Invalid encryption key.
|
M07
Encryption error.
|
M08
Error obtaining decryption key.
|
M09
Empty decryption key.
|
M10
Invalid decryption key.
|
M11
Decryption error.
|
M12
Key provider initialization problem.
|
M13
Unsupported signature algorithm.
|
M14
Error obtaining signature key.
|
M15
Empty signature key.
|
M16
Invalid signature key.
|
M17
Signing error.
|
M18
Unsupported secret random algorithm
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<CryptographyServiceRTException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static CryptographyServiceRTException.E05420 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CryptographyServiceRTException.E05420[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (CryptographyServiceRTException.E05420 c : CryptographyServiceRTException.E05420.values()) System.out.println(c);
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 nullgetExceptionClass
in interface ErrorCode