extcertpathvalidatorexception.java

来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 31 行

JAVA
31
字号
package org.bouncycastle.jce.exception;import java.security.cert.CertPath;import java.security.cert.CertPathValidatorException;public class ExtCertPathValidatorException    extends CertPathValidatorException    implements ExtException{    private Throwable cause;    public ExtCertPathValidatorException(String message, Throwable cause)    {        super(message);        this.cause = cause;    }    public ExtCertPathValidatorException(String msg, Throwable cause,         CertPath certPath, int index)    {        super(msg, cause, certPath, index);        this.cause = cause;    }        public Throwable getCause()    {        return cause;    }}

⌨️ 快捷键说明

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