Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PKIXNameConstraintValidatorException.java « provider « jce « bouncycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b06d5e5b92660c5838c1784aae3e26f7687ec01e (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.jce.provider;

public class PKIXNameConstraintValidatorException
    extends Exception
{
    public PKIXNameConstraintValidatorException(String msg)
    {
        super(msg);
    }
}