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

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

public class PasswordException
    extends PEMException
{
    public PasswordException(String msg)
    {
        super(msg);
    }
}