DataLengthException.java
资源名称:security.rar [点击查看]
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:0k
源码类别:
CA认证
开发平台:
Java
- package org.infosecurity.cryptography;
- /**
- * <p>Title: rsa数据长度超出发生的异常 </p>
- * <p>Description: rsa异常 </p>
- * <p>Copyright: Copyright (c) 2003</p>
- * <p>Company: 中信信息安全组织(CISO) </p>
- * @author 张荣华
- * @version 1.0.2003.0704
- */
- public class DataLengthException extends Exception
- {
- public DataLengthException()
- {
- }
- public DataLengthException( String message )
- {
- super(message);
- }
- }