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

PGPRuntimeOperationException.java « openpgp « bouncycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4067ec01def684f365fef72710c8a1affd595e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.bouncycastle.openpgp;

public class PGPRuntimeOperationException
    extends RuntimeException
{
    private final Throwable cause;

    public PGPRuntimeOperationException(String message, Throwable cause)
    {
        super(message);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}