generalsecurityexception.java

来自「jpeg2000编解码」· Java 代码 · 共 56 行

JAVA
56
字号
/*// $Log: GeneralSecurityException.java,v $// Revision 1.1.1.1  2002/08/27 11:49:30  grosbois// Imported source from cryptix 3.2//// Revision 1.2  2000/08/17 11:35:24  edwin// Package move java.* -> xjava.*, which is needed for JDK 1.3 compatibility.// I had to break permission support even further to make this work (I don't// believe it was working in the first place, so it's not really a problem).//// Revision 1.1.1.1  1997/11/03 22:36:57  hopwood// + Imported to CVS (tagged as 'start').//// $Endlog$*/package xjava.security;/** * This is the general security exception class, which serves to group all * the exception classes of the <samp>java.security</samp> package that extend * from it. * <p> * Exceptions (no pun intended) are <samp>AccessControlException</samp> * and <samp>CertificateException</samp>, which subclass from * <samp>java.lang.SecurityException</samp>, and <samp>ProviderException</samp> * and <samp>InvalidParameterException</samp>, which subclass from * <samp>java.lang.RuntimeException</samp>.  * <p> * This class is documented in JavaSoft's preview APIs, for introduction * in Java 1.2. * * <p><b>$Revision: 1.1.1.1 $</b> * @author David Hopwood * @since  IJCE 1.0.1 */public class GeneralSecurityException extends Exception {    /**     * Constructs a GeneralSecurityException without any detail message.     */    public GeneralSecurityException() {        super();    }    /**     * Constructs a GeneralSecurityException with the specified     * detail message. A detail message is a String that describes     * this particular exception.     *     * @param msg     the detail message.     */    public GeneralSecurityException(String msg) {        super(msg);    }}

⌨️ 快捷键说明

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