asn1exception.java
来自「JAVA开源LDAP浏览器jxplorer的源码!」· Java 代码 · 共 29 行
JAVA
29 行
package com.ca.commons.security.asn1;
/**
* The exception will be thrown when some error occurs during
* the creation/coding of the ASN1Objects.
*
* @author who
*/
public class ASN1Exception extends Exception implements java.io.Serializable
{
/**
* No description message.
*/
public ASN1Exception()
{
super();
}
/**
* Gives a description message to the exception.
*/
public ASN1Exception(String msg)
{
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?