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

NoSuchParserException.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: 060633021526aee6936adb25249f1f0161305357 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.x509;

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