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

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

public class StoreException
    extends RuntimeException
{
    private Throwable _e;

    public StoreException(String s, Throwable e)
    {
        super(s);
        _e = e;
    }

    public Throwable getCause()
    {
        return _e;
    }
}