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

CertPathValidationResultBuilder.java « path « cert « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e813396c74627c9b0893b097feb0b7195595cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bouncycastle.cert.path;

class CertPathValidationResultBuilder
{
    public CertPathValidationResult build()
    {
        return new CertPathValidationResult(null, 0, 0, null);
    }

    public void addException(CertPathValidationException exception)
    {
        //To change body of created methods use File | Settings | File Templates.
    }
}