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

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

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