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

DVCSException.java « dvcs « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5e3897dff014026748132fb9ea100e0dd375679 (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
28
package org.bouncycastle.dvcs;

/**
 * General DVCSException.
 */
public class DVCSException
    extends Exception
{
    private static final long serialVersionUID = 389345256020131488L;

    private Throwable cause;

    public DVCSException(String message)
    {
        super(message);
    }

    public DVCSException(String message, Throwable cause)
    {
        super(message);
        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}