aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/path/CertPathValidationResultBuilder.java
blob: 80bf7ff25388cc65cab05be111c01ce74657c68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.spongycastle.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.
    }
}