summaryrefslogtreecommitdiff
path: root/bcprov/src/main/java/org/bouncycastle/jce/provider/RecoverableCertPathValidatorException.java
blob: 90a2478b27ccb1b7dd7b89f684720d2c1bab96be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
    }
}