aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/InvalidAlgorithmParameterException.java
blob: e56228c297f7a6f5678069ec333ddf193ec6f3d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package java.security;

public class InvalidAlgorithmParameterException extends GeneralSecurityException {
    public InvalidAlgorithmParameterException()
    {
    }

    public InvalidAlgorithmParameterException(String msg)
    {
        super(msg);
    }
}