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

CertPathValidationException.java « path « cert « bouncycastle « org « jdk1.1 « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b302d8a3e378f0c0dcef64b0bdd2e0db57f92033 (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 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;
    }
}