maxbytesexceededexception.java

来自「J2me自动登录的源代码实例 有需要的朋友可以下载」· Java 代码 · 共 28 行

JAVA
28
字号
package org.bouncycastle.crypto;/** * this exception is thrown whenever a cipher requires a change of key, iv * or similar after x amount of bytes enciphered */public class MaxBytesExceededException    extends RuntimeCryptoException{    /**     * base constructor.     */    public MaxBytesExceededException()    {    }    /**     * create an with the given message.     *     * @param message the message to be carried with the exception.     */    public MaxBytesExceededException(        String  message)    {        super(message);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?