org.bouncycastle.jce.provider.RecoverableCertPathValidatorException Maven / Gradle / Ivy
package org.bouncycastle.jce.provider;
import java.security.cert.CertPath;
import java.security.cert.CertPathValidatorException;
class RecoverableCertPathValidatorException
extends CertPathValidatorException
{
public RecoverableCertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index)
{
super(msg, cause, certPath, index);
}
}