aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/PasswordException.java
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);
    }
}