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

CertPathValidationException.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: 958f2d0c78a26b99153efbbd15a953e1d01d32f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.bouncycastle.cert.path;

public class CertPathValidationException
    extends Exception
{
    private final Exception cause;

    public CertPathValidationException(String msg)
    {
        this(msg, null);
    }

    public CertPathValidationException(String msg, Exception cause)
    {
        super(msg);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}