All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.pkix.jcajce.CRLNotFoundException Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.pkix.jcajce;

import java.security.cert.CertPathValidatorException;

class CRLNotFoundException
    extends CertPathValidatorException
{
    CRLNotFoundException(String message)
    {
        super(message);
    }

    public CRLNotFoundException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy