BadPaddingExceptionpublic class BadPaddingException extends GeneralSecurityException The exception that is thrown when a padding mechanism is expected for the
input data, but the input data does not have the proper padding bytes. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public BadPaddingException(String msg)Creates a new instance of {@code BadPaddingException} with a message.
super(msg);
| public BadPaddingException()Creates a new instance of {@code BadPaddingException} with no message.
|
|