⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checksumexception.java

📁 另一个使用java编写的加密通用算法包
💻 JAVA
字号:
// $Id: ChecksumException.java,v 1.1.1.1 1997/11/20 21:32:00 hopwood Exp $//// $Log: ChecksumException.java,v $// Revision 1.1.1.1  1997/11/20 21:32:00  hopwood// + Moved ChecksumException and PRZ24 here from the cryptix.mime package.//// Revision 0.1.0.0  1997/??/??  R. Naffah// + Original version.//// $Endlog$/* * Copyright (c) 1997 Systemics Ltd * on behalf of the Cryptix Development Team.  All rights reserved. */package cryptix.util.checksum;import java.io.IOException;/** * A Java class to handle checksum exceptions. * <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.1.1.1 $</b> * @author  Raif S. Naffah */public class ChecksumExceptionextends IOException{    public ChecksumException () { super(); }    public ChecksumException (String description) { super(description); }}

⌨️ 快捷键说明

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