📄 cryptoexception.java
字号:
package net.propero.rdp.crypto;
/**
* This class is for any unexpected exception in the crypto library.
* <p>
* <b>Copyright</b> © 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -