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

NoSuchStoreException.java « x509 « spongycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35d499a2f3cfc16d604750e09c82086723dc9327 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.x509;

public class NoSuchStoreException
    extends Exception
{
    public NoSuchStoreException(String message)
    {
        super(message);
    }
}