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

EACException.java « eac « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6e02cfa4e8e47f91c7e97caa44957d7cc640c8a (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
25
26
27
package org.bouncycastle.eac;

/**
 * General checked Exception thrown in the cert package and its sub-packages.
 */
public class EACException
    extends Exception
{
    private Throwable cause;

    public EACException(String msg, Throwable cause)
    {
        super(msg);

        this.cause = cause;
    }

    public EACException(String msg)
    {
        super(msg);
    }

    public Throwable getCause()
    {
        return cause;
    }
}