cryptoexception.java

来自「cygwin 是一个在windows平台上运行的unix模拟环境」· Java 代码 · 共 22 行

JAVA
22
字号
package net.propero.rdp.crypto;

/**
 * This class is for any unexpected exception in the crypto library.
 * <p>
 * <b>Copyright</b> &copy; 1997
 * <a href="http://www.systemics.com/">Systemics Ltd</a> on behalf of the
 * <a href="http://www.systemics.com/docs/cryptix/">Cryptix Development Team</a>.
 * <br>All rights reserved.
 * <p>
 * <b>$Revision: 1.6 $</b>
 * @author  David Hopwood
 * @since   Cryptix 2.2.2
 */
public class CryptoException
extends Exception
{
    public CryptoException() { super(); }
    /** @param reason  the reason why the exception was thrown. */
    public CryptoException(String reason) { super(reason); }       
}

⌨️ 快捷键说明

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